Package org.opencms.security
Class CmsAuthentificationException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.opencms.main.CmsException
-
- org.opencms.security.CmsSecurityException
-
- org.opencms.security.CmsAuthentificationException
-
- All Implemented Interfaces:
java.io.Serializable,I_CmsThrowable
- Direct Known Subclasses:
CmsCustomLoginException,CmsUserDisabledException
public class CmsAuthentificationException extends CmsSecurityException
Signals that an attempt to authenticate (login) has a user has failed.Usually this means that a proper password / user name combination was not provided. However, there are also other possible explanations, for example a user could be disabled.
- Since:
- 6.0.0
- See Also:
- Serialized Form
-
-
Field Summary
-
Fields inherited from class org.opencms.main.CmsException
m_message
-
-
Constructor Summary
Constructors Constructor Description CmsAuthentificationException(CmsMessageContainer container)Creates a new localized Exception.CmsAuthentificationException(CmsMessageContainer container, java.lang.Throwable cause)Creates a new localized Exception that also containes a root cause.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description CmsExceptioncreateException(CmsMessageContainer container, java.lang.Throwable cause)Creates a copied instance of this localized exception.-
Methods inherited from class org.opencms.main.CmsException
getFormattedErrorstack, getLocalizedMessage, getLocalizedMessage, getMessage, getMessageContainer, getStackTraceAsString
-
-
-
-
Constructor Detail
-
CmsAuthentificationException
public CmsAuthentificationException(CmsMessageContainer container)
Creates a new localized Exception.- Parameters:
container- the localized message container to use
-
CmsAuthentificationException
public CmsAuthentificationException(CmsMessageContainer container, java.lang.Throwable cause)
Creates a new localized Exception that also containes a root cause.- Parameters:
container- the localized message container to usecause- the Exception root cause
-
-
Method Detail
-
createException
public CmsException createException(CmsMessageContainer container, java.lang.Throwable cause)
Description copied from class:CmsExceptionCreates a copied instance of this localized exception.- Overrides:
createExceptionin classCmsSecurityException- Parameters:
container- the message containercause- the root cause- Returns:
- a copied instance of this localized exception
- See Also:
CmsException.createException(org.opencms.i18n.CmsMessageContainer, java.lang.Throwable)
-
-