Class DigestException.DigestRuntimeException

java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.refcodes.exception.AbstractRuntimeException
org.refcodes.component.ComponentRuntimeException
org.refcodes.component.DigestException.DigestRuntimeException
All Implemented Interfaces:
Serializable, org.refcodes.exception.ErrorCodeAccessor, org.refcodes.exception.Trap
Enclosing class:
DigestException

public static class DigestException.DigestRuntimeException extends ComponentRuntimeException
Thrown in case digesting (processing) a job by a Digester.digest(Object) caused problems; the aCause is usually wrapped by this Exception.
See Also:
  • Constructor Details

    • DigestRuntimeException

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

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

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

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

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

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