Constructors Summary |
---|
public SecurityException()Constructs a new {@code SecurityException} that includes the current
stack trace.
super();
|
public SecurityException(String detailMessage)Constructs a new {@code SecurityException} with the current stack trace
and the specified detail message.
super(detailMessage);
|
public SecurityException(String message, Throwable cause)Constructs a new {@code SecurityException} with the current stack trace,
the specified detail message and the specified cause.
super(message, cause);
|
public SecurityException(Throwable cause)Constructs a new {@code SecurityException} with the current stack trace
and the specified cause.
super((cause == null ? null : cause.toString()), cause);
|