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