
uk.co.mruoc.promo.entity.account.AccountNotFoundException 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.account;
public class AccountNotFoundException extends RuntimeException {
public AccountNotFoundException(String id) {
super(String.format("account %s not found", id));
}
public AccountNotFoundException(Throwable cause) {
super(cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy