Constructors Summary |
---|
public RollbackException()Constructs a new RollbackException exception
with null as its detail message.
super();
|
public RollbackException(String message)Constructs a new RollbackException exception
with the specified detail message.
super(message);
|
public RollbackException(String message, Throwable cause)Constructs a new RollbackException exception
with the specified detail message and cause.
super(message, cause);
|
public RollbackException(Throwable cause)Constructs a new RollbackException exception
with the specified cause.
super(cause);
|