package org.initialde.yakasave.Domain.Exceptions;

public class AmountWithDrawGreaterThanBalanceException extends IllegalArgumentException {
    public AmountWithDrawGreaterThanBalanceException() {
        super("Le montant à retirer est supérieur au solde");
    }
}
