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

net.anotheria.portalkit.services.account.AccountNotFoundException Maven / Gradle / Ivy

package net.anotheria.portalkit.services.account;

import net.anotheria.portalkit.services.common.AccountId;

/**
 * TODO comment this class
 *
 * @author lrosenberg
 * @since 20.12.12 15:39
 */
public class AccountNotFoundException extends AccountServiceException{
	public AccountNotFoundException(AccountId id){
		super("Account with id "+id+" not found");
	}

	public AccountNotFoundException(String accountName) {
		super("Account with name "+accountName+" not found");
	}

	public AccountNotFoundException(String accountName, String brand) {
		super("Account with name " + accountName + " and brand " + brand + " not found");
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy