Definition at line 27 of file AppException.java.
Public Member Functions | |
AppException (String msg) | |
Creates a new AppException object. | |
AppException () | |
Creates a new AppException object. | |
String | toString () |
Returns a string representation of this object. |
|
Creates a new AppException object.
Definition at line 32 of file AppException.java. 00032 {}
|
|
Creates a new AppException object.
Definition at line 39 of file AppException.java. 00039 {super(msg);}
|
|
Returns a string representation of this object.
Definition at line 46 of file AppException.java. 00046 {return super.toString();}
|