Class RollbackException

All Implemented Interfaces:
Serializable

public class RollbackException extends PersistenceException
Thrown by the persistence provider when EntityTransaction.commit() fails.
Since:
1.0
See Also:
  • Constructor Details

    • RollbackException

      public RollbackException()
      Constructs a new RollbackException exception with null as its detail message.
    • RollbackException

      public RollbackException(String message)
      Constructs a new RollbackException exception with the specified detail message.
      Parameters:
      message - the detail message.
    • RollbackException

      public RollbackException(String message, Throwable cause)
      Constructs a new RollbackException exception with the specified detail message and cause.
      Parameters:
      message - the detail message.
      cause - the cause.
    • RollbackException

      public RollbackException(Throwable cause)
      Constructs a new RollbackException exception with the specified cause.
      Parameters:
      cause - the cause.