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
ConstructorsConstructorDescriptionConstructs a newTransformerExceptionexception withnullas its detail message.TransformerException(String message) Constructs a newTransformerExceptionexception with the specified detail message.TransformerException(String message, Throwable cause) Constructs a newTransformerExceptionexception with the specified detail message and cause.TransformerException(Throwable cause) Constructs a newTransformerExceptionexception 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 newTransformerExceptionexception withnullas its detail message. - 
TransformerException
Constructs a newTransformerExceptionexception with the specified detail message.- Parameters:
 message- the detail message.
 - 
TransformerException
 - 
TransformerException
Constructs a newTransformerExceptionexception with the specified cause.- Parameters:
 cause- the cause.
 
 -