Class DigestException

java.lang.Object
java.lang.Throwable
java.lang.Exception
org.refcodes.exception.AbstractException
org.refcodes.component.ComponentException
org.refcodes.component.DigestException
All Implemented Interfaces:
Serializable, org.refcodes.exception.ErrorCodeAccessor, org.refcodes.exception.Trap

public class DigestException extends ComponentException
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

    • DigestException

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

      public DigestException(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.
    • DigestException

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

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

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

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