Class RollbackException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- com.tangosol.coherence.transaction.exception.RollbackException
-
- All Implemented Interfaces:
Serializable
public class RollbackException extends RuntimeException
Indicates that the transaction was rolled back.- Author:
- js 2009.05.01
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description RollbackException()
Default constructorRollbackException(String s)
Construct a RollbackException with a msg.RollbackException(Throwable t)
Construct a RollbackException from a throwable.
-
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()
Default constructor
-
RollbackException
public RollbackException(Throwable t)
Construct a RollbackException from a throwable.- Parameters:
t
- the throwable that caused the rollback to occur
-
RollbackException
public RollbackException(String s)
Construct a RollbackException with a msg.- Parameters:
s
- the exception msg
-
-