java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
jakarta.persistence.PersistenceException
jakarta.persistence.RollbackException
- All Implemented Interfaces:
 Serializable
Thrown by the persistence provider when
 
EntityTransaction.commit() fails.- Since:
 - 1.0
 - See Also:
 
- 
Constructor Summary
ConstructorsConstructorDescriptionConstructs a newRollbackExceptionexception withnullas its detail message.RollbackException(String message) Constructs a newRollbackExceptionexception with the specified detail message.RollbackException(String message, Throwable cause) Constructs a newRollbackExceptionexception with the specified detail message and cause.RollbackException(Throwable cause) Constructs a newRollbackExceptionexception 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
- 
RollbackException
public RollbackException()Constructs a newRollbackExceptionexception withnullas its detail message. - 
RollbackException
Constructs a newRollbackExceptionexception with the specified detail message.- Parameters:
 message- the detail message.
 - 
RollbackException
 - 
RollbackException
Constructs a newRollbackExceptionexception with the specified cause.- Parameters:
 cause- the cause.
 
 -