Package jakarta.persistence
Class RollbackException
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
ConstructorDescriptionConstructs a newRollbackException
exception withnull
as its detail message.RollbackException
(String message) Constructs a newRollbackException
exception with the specified detail message.RollbackException
(String message, Throwable cause) Constructs a newRollbackException
exception with the specified detail message and cause.RollbackException
(Throwable cause) Constructs a newRollbackException
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
-
RollbackException
public RollbackException()Constructs a newRollbackException
exception withnull
as its detail message. -
RollbackException
Constructs a newRollbackException
exception with the specified detail message.- Parameters:
message
- the detail message.
-
RollbackException
Constructs a newRollbackException
exception with the specified detail message and cause.- Parameters:
message
- the detail message.cause
- the cause.
-
RollbackException
Constructs a newRollbackException
exception with the specified cause.- Parameters:
cause
- the cause.
-