

Public Member Functions | |
| SecurityException () | |
| SecurityException (String message) | |
| SecurityException (Throwable cause) | |
| SecurityException (String message, Throwable cause) | |
Definition at line 34 of file SecurityException.java.
|
|
Creates a new Definition at line 39 of file SecurityException.java. 00040 {
00041 }
|
|
|
Creates a new
Definition at line 48 of file SecurityException.java. 00049 {
00050 super(message);
00051 }
|
|
|
Creates a new
Definition at line 58 of file SecurityException.java. 00059 {
00060 super(cause);
00061 }
|
|
||||||||||||
|
Creates a new
Definition at line 69 of file SecurityException.java. 00070 {
00071 super(message, cause);
00072 }
|
1.3.9.1