
uk.co.mruoc.promo.entity.promo.PromoAlreadyClaimedException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of burger-promo Show documentation
Show all versions of burger-promo Show documentation
Burger promotion backend apis
The newest version!
package uk.co.mruoc.promo.entity.promo;
public class PromoAlreadyClaimedException extends RuntimeException {
public PromoAlreadyClaimedException(String promoId, String accountId) {
super(toMessage(promoId, accountId));
}
private static String toMessage(String promoId, String accountId) {
return String.format("account %s has already claimed promo %s", accountId, promoId);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy