Class DecryptionException

java.lang.Object
java.lang.Throwable
java.lang.Exception
org.refcodes.exception.AbstractException
org.refcodes.security.SecurityException
org.refcodes.security.DecryptionException
All Implemented Interfaces:
Serializable, org.refcodes.exception.ErrorCodeAccessor, org.refcodes.exception.Trap

public class DecryptionException extends SecurityException
Thrown in case an decryption issue occurred regarding the Encrypter. Probably the configuration of your Encrypter does not fit the one of the Decrypter.
See Also:
  • Constructor Details

    • DecryptionException

      public DecryptionException(String aMessage, String aErrorCode)
      Instantiates a new decryption exception.
      Parameters:
      aMessage - The aMessage describing this exception.
      aErrorCode - The error code identifying this exception.
    • DecryptionException

      public DecryptionException(String aMessage, Throwable aCause, String aErrorCode)
      Instantiates a new decryption exception.
      Parameters:
      aMessage - The aMessage describing this exception.
      aCause - The Throwable (Exception) causing this exception.
      aErrorCode - The error code identifying this exception.
    • DecryptionException

      public DecryptionException(String aMessage, Throwable aCause)
      Instantiates a new decryption exception.
      Parameters:
      aMessage - The aMessage describing this exception.
      aCause - The Throwable (Exception) causing this exception.
    • DecryptionException

      public DecryptionException(String aMessage)
      Instantiates a new decryption exception.
      Parameters:
      aMessage - The aMessage describing this exception.
    • DecryptionException

      public DecryptionException(Throwable aCause, String aErrorCode)
      Instantiates a new decryption exception.
      Parameters:
      aCause - The Throwable (Exception) causing this exception.
      aErrorCode - The error code identifying this exception.
    • DecryptionException

      public DecryptionException(Throwable aCause)
      Instantiates a new decryption exception.
      Parameters:
      aCause - The Throwable (Exception) causing this exception.