Class SecurityRuntimeException

java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.refcodes.exception.AbstractRuntimeException
org.refcodes.security.SecurityRuntimeException
All Implemented Interfaces:
Serializable, org.refcodes.exception.ErrorCodeAccessor, org.refcodes.exception.Trap
Direct Known Subclasses:
DecryptionException.DecryptionRuntimeException, EncryptionException.EncryptionRuntimeException

public abstract class SecurityRuntimeException extends org.refcodes.exception.AbstractRuntimeException
See Also:
  • Constructor Details

    • SecurityRuntimeException

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

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

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

      public SecurityRuntimeException(String aMessage)
      Instantiates a new security runtime exception.
      Parameters:
      aMessage - The aMessage describing this exception.
    • SecurityRuntimeException

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

      public SecurityRuntimeException(Throwable aCause)
      Instantiates a new security runtime exception.
      Parameters:
      aCause - The Throwable (Exception) causing this exception.