Package org.refcodes.security
Class SecurityException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.refcodes.exception.AbstractException
-
- org.refcodes.security.SecurityException
-
- Direct Known Subclasses:
DecryptionException,EncryptionException
public abstract class SecurityException extends org.refcodes.exception.AbstractExceptionThe Class SecurityException.- See Also:
- Serialized Form
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.refcodes.exception.ErrorCodeAccessor
org.refcodes.exception.ErrorCodeAccessor.ErrorCodeBuilder<B extends org.refcodes.exception.ErrorCodeAccessor.ErrorCodeBuilder<B>>, org.refcodes.exception.ErrorCodeAccessor.ErrorCodeMutator, org.refcodes.exception.ErrorCodeAccessor.ErrorCodeProperty
-
-
Constructor Summary
Constructors Constructor Description SecurityException(java.lang.String message)Instantiates a new security exception.SecurityException(java.lang.String aMessage, java.lang.String aErrorCode)Instantiates a new security exception.SecurityException(java.lang.String message, java.lang.Throwable cause)Instantiates a new security exception.SecurityException(java.lang.String aMessage, java.lang.Throwable aCause, java.lang.String aErrorCode)Instantiates a new security exception.SecurityException(java.lang.Throwable cause)Instantiates a new security exception.SecurityException(java.lang.Throwable aCause, java.lang.String aErrorCode)Instantiates a new security exception.
-
-
-
Constructor Detail
-
SecurityException
public SecurityException(java.lang.String aMessage, java.lang.String aErrorCode)Instantiates a new security exception.- Parameters:
aMessage- the messageaErrorCode- the error code
-
SecurityException
public SecurityException(java.lang.String aMessage, java.lang.Throwable aCause, java.lang.String aErrorCode)Instantiates a new security exception.- Parameters:
aMessage- the messageaCause- the causeaErrorCode- the error code
-
SecurityException
public SecurityException(java.lang.String message, java.lang.Throwable cause)Instantiates a new security exception.- Parameters:
message- the messagecause- the cause
-
SecurityException
public SecurityException(java.lang.String message)
Instantiates a new security exception.- Parameters:
message- the message
-
SecurityException
public SecurityException(java.lang.Throwable aCause, java.lang.String aErrorCode)Instantiates a new security exception.- Parameters:
aCause- the causeaErrorCode- the error code
-
SecurityException
public SecurityException(java.lang.Throwable cause)
Instantiates a new security exception.- Parameters:
cause- the cause
-
-