KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > sellwin > gui > SecurityWarning


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

9 /**
10  * This class is an application defined
11  * security exception class thrown when a
12  * user is not allowed to perform some
13  * application action based upon the user's
14  * security creditials
15  */

16 public class SecurityWarning extends java.lang.Exception JavaDoc {
17     /**
18      * construct the security warning exception
19      */

20     public SecurityWarning() {
21         super();
22     }
23
24     /**
25      * construct the warning with a message
26      * @param s the message to associate with this warning
27      */

28     public SecurityWarning(String JavaDoc s) {
29         super(s);
30     }
31 }
32
Popular Tags