Package org.oddjob
Class OddjobException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.oddjob.OddjobException
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
OddjobChildException,OddjobConfigException,OddjobUnexpectedException,OddjobWrapperException
An exception to be used by Oddjob jobs.
- Author:
- Rob Gordon
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionConstructs a new oddjob exception with no message an no cause.Constructs a new Oddjob exception with given message.OddjobException(String s, Throwable t) Constructs a new oddjob excpetion with the given message an cause.Constructs a new Oddjob exception with the given cause. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
OddjobException
public OddjobException()Constructs a new oddjob exception with no message an no cause. -
OddjobException
Constructs a new oddjob excpetion with the given message an cause.- Parameters:
s- The message.t- The cause.
-
OddjobException
Constructs a new Oddjob exception with the given cause.- Parameters:
t- The cause.
-
OddjobException
Constructs a new Oddjob exception with given message.- Parameters:
s- The message.
-