Package org.voltdb
Class VoltCompoundProcedure.CompoundProcAbortException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.voltdb.VoltCompoundProcedure.CompoundProcAbortException
- All Implemented Interfaces:
Serializable
- Enclosing class:
- VoltCompoundProcedure
Thrown from a stored procedure to abort a VoltCompoundProcedure.
There is no rollback. The client will get a response with a status
code of ClientResponse.COMPOUND_PROC_USER_ABORT.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionConstruct aCompoundProcAbortException
with a specified detail message.CompoundProcAbortException
(String msg, Throwable cause) Construct aCompoundProcAbortException
with a specified detail message and a specified cause.Construct aCompoundProcAbortException
with a specified cause, and a detail message copied from the cause (if such exists). -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
CompoundProcAbortException
Construct aCompoundProcAbortException
with a specified detail message.- Parameters:
msg
- the detail message
-
CompoundProcAbortException
Construct aCompoundProcAbortException
with a specified cause, and a detail message copied from the cause (if such exists).- Parameters:
cause
- the cause
-
CompoundProcAbortException
Construct aCompoundProcAbortException
with a specified detail message and a specified cause.- Parameters:
msg
- the detail messagecause
- the cause
-