org.oddjob
Class OddjobException

java.lang.Object
  extended byjava.lang.Throwable
      extended byjava.lang.Exception
          extended byjava.lang.RuntimeException
              extended byorg.oddjob.OddjobException
All Implemented Interfaces:
java.io.Serializable
Direct Known Subclasses:
OddjobChildException, OddjobConfigException, OddjobPersistException

public class OddjobException
extends java.lang.RuntimeException

An exception to be used by Oddjob jobs.

See Also:
Serialized Form
Author:
Rob Gordon

Constructor Summary
OddjobException()
          Constructs a new oddjob exception with no message an no cause.
OddjobException(java.lang.String s)
          Constructs a new Oddjob exception with given message.
OddjobException(java.lang.String s, java.lang.Throwable t)
          Constructs a new oddjob excpetion with the given message an cause.
OddjobException(java.lang.Throwable t)
          Constructs a new Oddjob exception with the given cause.
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

OddjobException

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


OddjobException

public OddjobException(java.lang.String s,
                       java.lang.Throwable t)
Constructs a new oddjob excpetion with the given message an cause.

Parameters:
s - The message.
t - The cause.

OddjobException

public OddjobException(java.lang.Throwable t)
Constructs a new Oddjob exception with the given cause.

Parameters:
t - The cause.

OddjobException

public OddjobException(java.lang.String s)
Constructs a new Oddjob exception with given message.

Parameters:
s - The message.