Package jakarta.persistence.spi
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:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description TransformerException()
Constructs a newTransformerException
exception withnull
as its detail message.TransformerException(String message)
Constructs a newTransformerException
exception with the specified detail message.TransformerException(String message, Throwable cause)
Constructs a newTransformerException
exception with the specified detail message and cause.TransformerException(Throwable cause)
Constructs a newTransformerException
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
-
-
-
-
Constructor Detail
-
TransformerException
public TransformerException()
Constructs a newTransformerException
exception withnull
as its detail message.
-
TransformerException
public TransformerException(String message)
Constructs a newTransformerException
exception with the specified detail message.- Parameters:
message
- the detail message.
-
TransformerException
public TransformerException(String message, Throwable cause)
Constructs a newTransformerException
exception with the specified detail message and cause.- Parameters:
message
- the detail message.cause
- the cause.
-
TransformerException
public TransformerException(Throwable cause)
Constructs a newTransformerException
exception with the specified cause.- Parameters:
cause
- the cause.
-
-