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

public static class VoltCompoundProcedure.CompoundProcAbortException extends RuntimeException
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 Details

    • CompoundProcAbortException

      public CompoundProcAbortException(String msg)
      Construct a CompoundProcAbortException with a specified detail message.
      Parameters:
      msg - the detail message
    • CompoundProcAbortException

      public CompoundProcAbortException(Throwable cause)
      Construct a CompoundProcAbortException with a specified cause, and a detail message copied from the cause (if such exists).
      Parameters:
      cause - the cause
    • CompoundProcAbortException

      public CompoundProcAbortException(String msg, Throwable cause)
      Construct a CompoundProcAbortException with a specified detail message and a specified cause.
      Parameters:
      msg - the detail message
      cause - the cause