Package com.adobe.aem.dermis.exception
Class DermisException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- com.adobe.aemfd.dermis.authentication.exception.AuthenticationException
-
- com.adobe.aem.dermis.exception.DermisException
-
- All Implemented Interfaces:
java.io.Serializable
- Direct Known Subclasses:
DermisValidationException
public class DermisException extends AuthenticationException
Exception class for any exceptions or errors during processing within the Dermis.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description DermisException()
DermisException(java.lang.String message)
DermisException(java.lang.String resourceID, int severity)
A constructor that finds a string usingresourceID
and merges arguments and logs.DermisException(java.lang.String resourceID, int severity, java.lang.Throwable cause)
A constructor that finds a string usingresourceID
and logs.DermisException(java.lang.String resourceID, java.lang.String[] args)
A constructor that finds a string usingresourceID
and merges arguments and logs.DermisException(java.lang.String resourceID, java.lang.String[] args, int severity)
A constructor that finds a string usingresourceID
and merges arguments and logs.DermisException(java.lang.String resourceID, java.lang.String[] args, int severity, java.lang.Throwable cause)
A constructor that finds a string usingresourceID
and merges arguments and logs.DermisException(java.lang.String resourceID, java.lang.String[] args, java.lang.String rootErrorCode, java.lang.String rootErrorMessage)
A constructor that finds a string usingresourceID
and merges arguments and logs.DermisException(java.lang.String message, java.lang.Throwable cause)
DermisException(java.lang.Throwable cause)
-
Method Summary
-
Methods inherited from class com.adobe.aemfd.dermis.authentication.exception.AuthenticationException
getJson, getMessageArgs, getMessageCode, getOriginCode, getOriginMessage, getUnresolvedMessage, setMessageArgs, setMessageCode, setUnresolvedMessage
-
-
-
-
Constructor Detail
-
DermisException
public DermisException()
-
DermisException
public DermisException(java.lang.String resourceID, java.lang.String[] args, int severity)
A constructor that finds a string usingresourceID
and merges arguments and logs.- Parameters:
resourceID
- key of message.args
- array containing value of place holders.severity
- severity of message.
-
DermisException
public DermisException(java.lang.String resourceID, java.lang.String[] args)
A constructor that finds a string usingresourceID
and merges arguments and logs.- Parameters:
resourceID
- key of message.args
- array containing value of place holders.
-
DermisException
public DermisException(java.lang.String resourceID, java.lang.String[] args, java.lang.String rootErrorCode, java.lang.String rootErrorMessage)
A constructor that finds a string usingresourceID
and merges arguments and logs.- Parameters:
resourceID
- key of message.args
- array containing value of place holders.
-
DermisException
public DermisException(java.lang.String resourceID, int severity, java.lang.Throwable cause)
A constructor that finds a string usingresourceID
and logs.- Parameters:
resourceID
- key of message.severity
- severity of message.cause
- cause of the exception.
-
DermisException
public DermisException(java.lang.String resourceID, java.lang.String[] args, int severity, java.lang.Throwable cause)
A constructor that finds a string usingresourceID
and merges arguments and logs.- Parameters:
resourceID
- key of message.args
- array containing value of place holders.severity
- severity of message.cause
- cause of the exception.
-
DermisException
public DermisException(java.lang.String resourceID, int severity)
A constructor that finds a string usingresourceID
and merges arguments and logs.- Parameters:
resourceID
- key of message.severity
- severity of message.
-
DermisException
public DermisException(java.lang.String message)
-
DermisException
public DermisException(java.lang.Throwable cause)
-
DermisException
public DermisException(java.lang.String message, java.lang.Throwable cause)
-
-