BadNumberException |
/* * $Id: BadNumberException.java.html,v 1.1 2002-09-22 22:32:41 o_rossmueller Exp $ * $Source: C:\Users\Orionll\Desktop\junitee-cvs/JUnitEE/doc/tutorial/org/junitee/ejb/einstein/BadNumberException.java.html,v $ */ package org.junitee.ejb.einstein; /** * Exception thrown if a String could not be converted to a number */ public class BadNumberException extends Exception { /** */ public BadNumberException() {} /** */ public BadNumberException(String msg) { super(msg); } }
BadNumberException |