Class TransformException

  • All Implemented Interfaces:
    java.io.Serializable

    public class TransformException
    extends java.lang.Exception
    Thrown when transformation failed.
    See Also:
    Serialized Form
    • Constructor Summary

      Constructors 
      Constructor Description
      TransformException()
      Creates a new exception with default detail message.
      TransformException​(java.lang.String message)
      Creates a new exception with the specified detail message.
      TransformException​(java.lang.String message, java.lang.Throwable cause)
      Creates a new exception with the specified detail message and cause.
      TransformException​(java.lang.Throwable cause)
      Creates a new exception with the specified cause.
    • Method Summary

      • Methods inherited from class java.lang.Throwable

        addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, 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

      • TransformException

        public TransformException()
        Creates a new exception with default detail message.
      • TransformException

        public TransformException​(java.lang.String message)
        Creates a new exception with the specified detail message.
        Parameters:
        message - The detail message, may be null.
      • TransformException

        public TransformException​(java.lang.Throwable cause)
        Creates a new exception with the specified cause.
        Parameters:
        cause - The exception that caused this one, may be null.
      • TransformException

        public TransformException​(java.lang.String message,
                                  java.lang.Throwable cause)
        Creates a new exception with the specified detail message and cause.
        Parameters:
        message - The detail message, may be null.
        cause - The exception that caused this one, may be null.