All Downloads are FREE. Search and download functionalities are using the official Maven repository.

uk.co.mruoc.promo.entity.account.AccountNotFoundException Maven / Gradle / Ivy

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