Class TransformerException

java.lang.Object
java.lang.Throwable
java.lang.Exception
jakarta.persistence.spi.TransformerException
All Implemented Interfaces:
Serializable

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

    • TransformerException

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

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

      public TransformerException(String message, 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(Throwable cause)
      Constructs a new TransformerException exception with the specified cause.
      Parameters:
      cause - the cause.