package hackathon.boxme.register; public class AccountNotSupportedException extends Exception { public AccountNotSupportedException() { // TODO Auto-generated constructor stub } public AccountNotSupportedException(String message) { super(message); // TODO Auto-generated constructor stub } public AccountNotSupportedException(Throwable cause) { super(cause); // TODO Auto-generated constructor stub } public AccountNotSupportedException(String message, Throwable cause) { super(message, cause); // TODO Auto-generated constructor stub } }