Package javax.persistence
Class RollbackException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- javax.persistence.PersistenceException
-
- javax.persistence.RollbackException
-
- All Implemented Interfaces:
java.io.Serializable
public class RollbackException extends PersistenceException
Thrown by the persistence provider whenEntityTransaction.commit()
fails.- See Also:
EntityTransaction.commit()
, Serialized Form- Since:
- 1.0
-
-
Constructor Summary
Constructors Constructor Description RollbackException()
Constructs a newRollbackException
exception withnull
as its detail message.RollbackException(java.lang.String message)
Constructs a newRollbackException
exception with the specified detail message.RollbackException(java.lang.String message, java.lang.Throwable cause)
Constructs a newRollbackException
exception with the specified detail message and cause.RollbackException(java.lang.Throwable cause)
Constructs a newRollbackException
exception with the specified cause.
-
-
-
Constructor Detail
-
RollbackException
public RollbackException()
Constructs a newRollbackException
exception withnull
as its detail message.
-
RollbackException
public RollbackException(java.lang.String message)
Constructs a newRollbackException
exception with the specified detail message.- Parameters:
message
- the detail message.
-
RollbackException
public RollbackException(java.lang.String message, java.lang.Throwable cause)
Constructs a newRollbackException
exception with the specified detail message and cause.- Parameters:
message
- the detail message.cause
- the cause.
-
RollbackException
public RollbackException(java.lang.Throwable cause)
Constructs a newRollbackException
exception with the specified cause.- Parameters:
cause
- the cause.
-
-