View Javadoc
1   package ejava.examples.orm.inheritance.annotated;
2   
3   /**
4    * This class is thrown by Account methods to report a business exception.
5    *
6    * @author jcstaff
7    */
8   public class AccountException extends Exception {
9       private static final long serialVersionUID = 1L;
10      public AccountException() {}
11      public AccountException(String message) { super(message); }
12  }