类 MorphException

所有已实现的接口:
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.
另请参阅:
  • 字段详细资料

    • cause

      protected Throwable cause
      The root cause of this ConversionException, compatible with JDK 1.4's extensions to java.lang.Throwable.
  • 构造器详细资料

    • MorphException

      public MorphException(String message)
      Construct a new exception with the specified message.
      参数:
      message - The message describing this exception
    • MorphException

      public MorphException(String message, Throwable cause)
      Construct a new exception with the specified message and root cause.
      参数:
      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.
      参数:
      cause - The root cause of this exception
  • 方法详细资料

    • getCause

      public Throwable getCause()
      Returns the cause of this exception.
      覆盖:
      getCause 在类中 Throwable
      返回:
      a Throwable that represents the cause of this exception