Package org.oddjob

Class OddjobException

All Implemented Interfaces:
Serializable
Direct Known Subclasses:
OddjobChildException, OddjobConfigException, OddjobUnexpectedException, OddjobWrapperException

public class OddjobException extends RuntimeException
An exception to be used by Oddjob jobs.
Author:
Rob Gordon
See Also:
  • Constructor Details

    • OddjobException

      public OddjobException()
      Constructs a new oddjob exception with no message an no cause.
    • OddjobException

      public OddjobException(String s, Throwable t)
      Constructs a new oddjob excpetion with the given message an cause.
      Parameters:
      s - The message.
      t - The cause.
    • OddjobException

      public OddjobException(Throwable t)
      Constructs a new Oddjob exception with the given cause.
      Parameters:
      t - The cause.
    • OddjobException

      public OddjobException(String s)
      Constructs a new Oddjob exception with given message.
      Parameters:
      s - The message.