Package net.sf.ezmorph
Class MorphException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- org.apache.commons.lang.exception.NestableRuntimeException
-
- net.sf.ezmorph.MorphException
-
- All Implemented Interfaces:
Serializable,org.apache.commons.lang.exception.Nestable
public class MorphException extends org.apache.commons.lang.exception.NestableRuntimeExceptionA MorphException indicates that a call toMorpher.morph()has failed to complete successfully.
Based on common-beauntils ConversionException.- Author:
- Andres Almiray
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description MorphException(String message)Construct a new exception with the specified message.MorphException(String message, Throwable cause)Construct a new exception with the specified message and root cause.MorphException(Throwable cause)Construct a new exception with the specified root cause.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ThrowablegetCause()Returns the cause of this exception.-
Methods inherited from class org.apache.commons.lang.exception.NestableRuntimeException
getMessage, getMessage, getMessages, getThrowable, getThrowableCount, getThrowables, indexOfThrowable, indexOfThrowable, printPartialStackTrace, printStackTrace, printStackTrace, printStackTrace
-
Methods inherited from class java.lang.Throwable
fillInStackTrace, getLocalizedMessage, getStackTrace, initCause, setStackTrace, toString
-
-
-
-
Field Detail
-
cause
protected Throwable cause
The root cause of thisConversionException, compatible with JDK 1.4's extensions tojava.lang.Throwable.
-
-
Constructor Detail
-
MorphException
public MorphException(String message)
Construct a new exception with the specified message.- Parameters:
message- The message describing this exception
-
MorphException
public MorphException(String message, Throwable cause)
Construct a new exception with the specified message and root cause.- Parameters:
message- The message describing this exceptioncause- The root cause of this exception
-
MorphException
public MorphException(Throwable cause)
Construct a new exception with the specified root cause.- Parameters:
cause- The root cause of this exception
-
-
Method Detail
-
getCause
public Throwable getCause()
Returns the cause of this exception.- Specified by:
getCausein interfaceorg.apache.commons.lang.exception.Nestable- Overrides:
getCausein classorg.apache.commons.lang.exception.NestableRuntimeException- Returns:
- a Throwable that represents the cause of this exception
-
-