Initial Commit
[packages] / xemacs-packages / jde / java / src / jde / debugger / JDENumberFormatException.java
1 package jde.debugger;
2
3 /**
4  * JDENumberFormatException.java
5  * <p>
6  * 
7  * <p>
8  * Created: Thu Aug  5 18:52:41 1999
9  * 
10  * @author Amit Kumar
11  * @since 0.1
12  * @version $Revision: 1.2 $
13  */
14
15 public class JDENumberFormatException extends JDEException {
16     
17   public JDENumberFormatException(String str) {
18     super("Non-numeric "+str);
19   }
20     
21 } // JDENumberFormatException
22
23 /*
24  * $Log: JDENumberFormatException.java,v $
25  * Revision 1.2  2003/01/08 06:53:37  paulk
26  * Integrate Petter Mahlen's updates.
27  *
28  */
29
30 // end of JDENumberFormatException.java