www.pudn.com > EJB3eCode.zip > AccountException.java


package examples.bmp;

/**
 * Exceptions thrown by Accounts
 */
public class AccountException 
    extends Exception 
{
    public AccountException() {
        super();
    }

    public AccountException(Exception e) {
        super(e.toString());
    }

    public AccountException(String s) {
        super(s);
    }
}