Class StoredProcedureException

java.lang.Object
java.lang.Throwable
java.lang.Exception
com.denodo.vdb.engine.storedprocedure.StoredProcedureException
All Implemented Interfaces:
Serializable
Direct Known Subclasses:
StoredProcedureRaiseException

public class StoredProcedureException extends Exception
Exception thrown by the methods of the stored procedure API.
See Also:
  • Constructor Details

    • StoredProcedureException

      public StoredProcedureException()
      Creates a new StoredProcedureException.
    • StoredProcedureException

      public StoredProcedureException(String message)
      Creates a StoredProcedureException exception with the specified detail message. The cause is not initialized, and may subsequently be initialized by a call to Throwable.initCause(Throwable). Throwable.initCause(Throwable)
      Parameters:
      message - the detail message. The detail message is saved for later retrieval by the Throwable.getMessage() method.
    • StoredProcedureException

      public StoredProcedureException(Throwable cause)
      Constructs a StoredProcedureException with the specified cause and a detail message of (cause==null ? null : cause.toString())
      Parameters:
      cause - the cause (which is saved for later retrieval by the Throwable.getCause() method). (A null value is permitted, and indicates that the cause is nonexistent or unknown.)
      Since:
      4.6
    • StoredProcedureException

      public StoredProcedureException(String message, Throwable cause)
      Constructs a new exception with the specified detail message and cause.
      Parameters:
      message - the detail message (which is saved for later retrieval by the Throwable.getMessage() method).
      cause - the cause (which is saved for later retrieval by the Throwable.getCause() method). (A null value is permitted, and indicates that the cause is nonexistent or unknown.)
      Since:
      4.6
  • Method Details

    • getDetailErrorMessage

      public String getDetailErrorMessage()
    • setDetailErrorMessage

      public void setDetailErrorMessage(String detailErrorMessage)