22 lines
411 B
Java
22 lines
411 B
Java
package java.lang;
|
|
|
|
public class SecurityException extends RuntimeException {
|
|
|
|
public SecurityException() {
|
|
super();
|
|
}
|
|
|
|
public SecurityException(String s) {
|
|
super(s);
|
|
}
|
|
|
|
public SecurityException(String message,
|
|
Throwable cause) {
|
|
super(message, cause);
|
|
}
|
|
|
|
public SecurityException(Throwable cause) {
|
|
super(cause);
|
|
}
|
|
}
|