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
Exception thrown by the methods of the stored procedure API.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionCreates a new StoredProcedureException.StoredProcedureException
(String message) Creates aStoredProcedureException
exception with the specified detail message.StoredProcedureException
(String message, Throwable cause) Constructs a new exception with the specified detail message and cause.Constructs aStoredProcedureException
with the specified cause and a detail message of(cause==null ? null : cause.toString())
-
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
StoredProcedureException
public StoredProcedureException()Creates a new StoredProcedureException. -
StoredProcedureException
Creates aStoredProcedureException
exception with the specified detail message. The cause is not initialized, and may subsequently be initialized by a call toThrowable.initCause(Throwable)
.Throwable.initCause(Throwable)
- Parameters:
message
- the detail message. The detail message is saved for later retrieval by theThrowable.getMessage()
method.
-
StoredProcedureException
Constructs aStoredProcedureException
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 theThrowable.getCause()
method). (Anull
value is permitted, and indicates that the cause is nonexistent or unknown.)- Since:
- 4.6
-
StoredProcedureException
Constructs a new exception with the specified detail message and cause.- Parameters:
message
- the detail message (which is saved for later retrieval by theThrowable.getMessage()
method).cause
- the cause (which is saved for later retrieval by theThrowable.getCause()
method). (Anull
value is permitted, and indicates that the cause is nonexistent or unknown.)- Since:
- 4.6
-
-
Method Details
-
getDetailErrorMessage
-
setDetailErrorMessage
-