public class StoredProcedureException extends Exception
Modifier and Type | Field and Description |
---|---|
protected static long |
serialVersionUID |
Constructor and Description |
---|
StoredProcedureException()
Creates a new StoredProcedureException.
|
StoredProcedureException(String message)
Creates a
StoredProcedureException exception with the specified detail message. |
StoredProcedureException(String message,
Throwable cause)
Constructs a new exception with the specified detail message and
cause.
|
StoredProcedureException(Throwable cause)
Constructs a
StoredProcedureException with the specified cause and a detail
message of (cause==null ? null : cause.toString()) |
Modifier and Type | Method and Description |
---|---|
String |
getDetailErrorMessage() |
void |
setDetailErrorMessage(String detailErrorMessage) |
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
protected static final long serialVersionUID
public StoredProcedureException()
public StoredProcedureException(String message)
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)
message
- the detail message. The detail message is saved for later retrieval by the
Throwable.getMessage()
method.public StoredProcedureException(Throwable cause)
StoredProcedureException
with the specified cause and a detail
message of (cause==null ? null : cause.toString())
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.)public StoredProcedureException(String message, Throwable cause)
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.)Copyright © 2024 Denodo Technologies. All rights reserved.