public class AuthException extends ServiceException
Constructor and Description |
---|
AuthException()
Constructs a new exception with null as its detail message.
|
AuthException(java.lang.String message)
Constructs a new exception with the specified detail message.
|
AuthException(java.lang.String message,
java.lang.Throwable cause)
Constructs a new exception with the specified detail message and cause.
|
AuthException(java.lang.Throwable cause)
Constructs a new exception with the specified cause and a detail message
of (
cause==null ? null : cause.toString() ) (which typically
contains the class and detail message of cause). |
public AuthException()
public AuthException(java.lang.String message)
message
- detail message describing the exception.public AuthException(java.lang.String message, java.lang.Throwable cause)
message
- detail message describing the exception.cause
- original throwable that caused this exception.public AuthException(java.lang.Throwable cause)
cause==null ? null : cause.toString()
) (which typically
contains the class and detail message of cause).cause
- original throwable that caused this exception.