Constructors Summary |
---|
public SecurityException()Constructs a SecurityException with no detail message.
super();
|
public SecurityException(String s)Constructs a SecurityException with the specified
detail message.
super(s);
|
public SecurityException(String message, Throwable cause)Creates a SecurityException with the specified
detail message and cause.
super(message, cause);
|
public SecurityException(Throwable cause)Creates a SecurityException with the specified cause
and a detail message of (cause==null ? null : cause.toString())
(which typically contains the class and detail message of
cause).
super(cause);
|