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
public class RollbackException extends PersistenceException
Thrown by the persistence provider whenEntityTransaction.commit()
fails.- Since:
- 1.0
- See Also:
EntityTransaction.commit()
, Serialized Form
-
-
Constructor Summary
Constructors Constructor Description RollbackException()
Constructs 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 Detail
-
RollbackException
public RollbackException()
Constructs a newRollbackException
exception withnull
as its detail message.
-
RollbackException
public RollbackException(String message)
Constructs a newRollbackException
exception with the specified detail message.- Parameters:
message
- the detail message.
-
RollbackException
public RollbackException(String message, Throwable cause)
Constructs a newRollbackException
exception with the specified detail message and cause.- Parameters:
message
- the detail message.cause
- the cause.
-
RollbackException
public RollbackException(Throwable cause)
Constructs a newRollbackException
exception with the specified cause.- Parameters:
cause
- the cause.
-
-