Class AuthenticationException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.tentackle.common.TentackleRuntimeException
org.tentackle.session.PersistenceException
org.tentackle.session.LoginFailedException
org.tentackle.session.auth.AuthenticationException
- All Implemented Interfaces:
Serializable, Loggable
- Direct Known Subclasses:
CredentialsExpiredException
Thrown by an
AuthenticationProvider that vetoes the credentials it was given.
It extends LoginFailedException so that clients handling a failed login — most notably
the desktop client's LoginFailedHandler — treat it like any other refused login.
A provider that simply is not responsible for the credentials must not throw: it returns
null to abstain and let the next provider in the chain try.
- Author:
- harald
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionAuthenticationException(String message) Constructs a new authentication exception with the specified detail message.AuthenticationException(String message, Throwable cause) Constructs a new authentication exception with the specified detail message and cause. -
Method Summary
Methods inherited from class LoginFailedException
getLogLevelMethods inherited from class PersistenceException
evaluate, extractPersistenceException, getIdentifiable, getMessage, getSession, updateDbObjectMethods inherited from class org.tentackle.common.TentackleRuntimeException
isTemporary, setTemporaryMethods inherited from class Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toStringMethods inherited from class Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitMethods inherited from interface Loggable
withStacktrace
-
Constructor Details
-
AuthenticationException
Constructs a new authentication exception with the specified detail message.- Parameters:
message- the detail message
-
AuthenticationException
-