Class VerifyRuntimeException

All Implemented Interfaces:
Serializable, ErrorCodeAccessor, Trap

public class VerifyRuntimeException extends AbstractRuntimeException
A verify exception is thrown in case the verification of the result (of an algorithm) failed. This exception is thrown at runtime in case the VerifyMode is set to VerifyMode#VERFIY
See Also:
  • Constructor Details

    • VerifyRuntimeException

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

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

      public VerifyRuntimeException(Throwable aCause)
      Instantiates a new verify runtime exception.
      Parameters:
      aCause - The Throwable (Exception) causing this exception.
    • VerifyRuntimeException

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

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

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