Class MorphException

All Implemented Interfaces:
Serializable

public class MorphException extends RuntimeException
A MorphException indicates that a call to Morpher.morph() has failed to complete successfully.
Based on common-beauntils ConversionException.
See Also:
  • Field Details

    • cause

      protected Throwable cause
      The root cause of this ConversionException, compatible with JDK 1.4's extensions to java.lang.Throwable.
  • Constructor Details

    • 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 exception
      cause - 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 Details

    • getCause

      public Throwable getCause()
      Returns the cause of this exception.
      Overrides:
      getCause in class Throwable
      Returns:
      a Throwable that represents the cause of this exception