Class TransformerException

  • All Implemented Interfaces:
    java.io.Serializable

    public class TransformerException
    extends java.lang.Exception
    Thrown by the persistence provider when a problem during class re-definition occurs.
    Since:
    3.1
    See Also:
    Serialized Form
    • Constructor Summary

      Constructors 
      Constructor Description
      TransformerException()
      Constructs a new TransformerException exception with null as its detail message.
      TransformerException​(java.lang.String message)
      Constructs a new TransformerException exception with the specified detail message.
      TransformerException​(java.lang.String message, java.lang.Throwable cause)
      Constructs a new TransformerException exception with the specified detail message and cause.
      TransformerException​(java.lang.Throwable cause)
      Constructs a new TransformerException 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

      • TransformerException

        public TransformerException()
        Constructs a new TransformerException exception with null as its detail message.
      • TransformerException

        public TransformerException​(java.lang.String message)
        Constructs a new TransformerException exception with the specified detail message.
        Parameters:
        message - the detail message.
      • TransformerException

        public TransformerException​(java.lang.String message,
                                    java.lang.Throwable cause)
        Constructs a new TransformerException exception with the specified detail message and cause.
        Parameters:
        message - the detail message.
        cause - the cause.
      • TransformerException

        public TransformerException​(java.lang.Throwable cause)
        Constructs a new TransformerException exception with the specified cause.
        Parameters:
        cause - the cause.