-- added fancybox 1.3.1 to project, initially for showing screenshots. See documentat...
[Bookkeeping.git] / src / com / interrupt / bookkeeping / exception / AccountException.java
blob8cde1fe55a463b62709de70d4d3822d464429155
2 package com.interrupt.bookkeeping.exception;
4 public class AccountException extends RuntimeException {
7 public AccountException() {
8 super();
10 public AccountException(String message) {
11 super(message);
13 public AccountException(String message, Throwable cause) {
14 super(message,cause);
16 public AccountException(Throwable cause) {
17 super(cause);