package edu.hawaii.ics415.problem3.fieldcheck;
/**
* Provides the exception for this package which inherits from RuntimeException.
*
* @author Takuya Yamashita
*/
public class AccountException extends RuntimeException {
/**
* Indicates an illegal operation on an account was performed.
*
* @param message The message to be thrown
*/
public AccountException(String message) {
super(message);
}
}