public class SecurityException extends CacheException
Constructor | Description |
---|---|
SecurityException() |
Constructs an
SecurityException with null
as its error detail message. |
SecurityException(int errorCode,
java.lang.String reason,
java.lang.String stackTrace) |
|
SecurityException(java.lang.String s) |
Constructs an
SecurityException with the specified detail
message. |
getErrorCode, printStackTrace, setErrorCode
public SecurityException()
SecurityException
with null
as its error detail message.public SecurityException(java.lang.String s)
SecurityException
with the specified detail
message. The error message string s
can later be
retrieved by the Throwable.getMessage()
method of class java.lang.Throwable
.s
- the detail message.public SecurityException(int errorCode, java.lang.String reason, java.lang.String stackTrace)