KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > sellwin > domain > AngError


1 package sellwin.domain;
2
3 // SellWin http://sourceforge.net/projects/sellwincrm
4
//Contact support@open-app.com for commercial help with SellWin
5
//This software is provided "AS IS", without a warranty of any kind.
6

7
8 /**
9  * This class is a general application level exception that is thrown
10  * across the system when an application error occurs.
11  */

12 public class AngError extends java.lang.Exception JavaDoc {
13     /** construct an application error exception */
14     public AngError() {
15         super();
16     }
17
18     /** construct an application error exception
19      * @param s the error message
20      */

21     public AngError(String JavaDoc s) {
22         super(s);
23     }
24 }
25
Popular Tags