public class AuthenticationException extends Exception
Throwable.getCause() exception to get a better understanding of the
real cause of the error.
Copyright 2006, Sans Pareil Technologies, Inc.
| Constructor and Description |
|---|
AuthenticationException()
Default constructor.
|
AuthenticationException(String message)
Create a new exception with the specified message.
|
AuthenticationException(String message,
Throwable throwable)
Create a new exception with the specified message and instance of
Throwable that caused the problem. |
AuthenticationException(Throwable throwable)
Create a new exception with instance of
Throwable
that caused the problem. |
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toStringpublic AuthenticationException()
null
message.public AuthenticationException(String message)
message - The message that describes the problem.public AuthenticationException(Throwable throwable)
Throwable
that caused the problem.throwable - The exception that caused this instance of the exception
to be thrown.public AuthenticationException(String message, Throwable throwable)
Throwable that caused the problem.message - The message that describes the problem.throwable - The exception that caused this instance of the exception
to be thrown.