// COBOL Programmers Swing With Java - copyright 2005 Doke, Hardgrave, & Johnson // Chapter 11 - OO Development Issues // No Account Found Exception // NoAccountFoundException.java 1 JAN 05 public class NoAccountFoundException extends Exception { public NoAccountFoundException (String errorMessage) // constructor { super(errorMessage);} } // end NoAccountFoundException.java