package ex2_commandes;

public class StockInsuffisantException extends Exception {
    public StockInsuffisantException(String codePlat) {
        super("Stock insuffisant pour : " + codePlat);
    }
}
