java.lang.Object
java.lang.Throwable
java.lang.Exception
jakarta.persistence.spi.TransformerException
- All Implemented Interfaces:
Serializable
Thrown by the persistence provider when a problem during
class re-definition occurs.
- Since:
- 3.1
- See Also:
-
Constructor Summary
ConstructorDescriptionConstructs 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 Details
-
TransformerException
public TransformerException()Constructs a newTransformerException
exception withnull
as its detail message. -
TransformerException
Constructs a newTransformerException
exception with the specified detail message.- Parameters:
message
- the detail message.
-
TransformerException
Constructs a newTransformerException
exception with the specified detail message and cause.- Parameters:
message
- the detail message.cause
- the cause.
-
TransformerException
Constructs a newTransformerException
exception with the specified cause.- Parameters:
cause
- the cause.
-