Package org.sqlproc.engine
Class SqlRuntimeException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.sqlproc.engine.SqlRuntimeException
- All Implemented Interfaces:
Serializable
The general runtime exception class for the SQL Processor engine.
This exception can be raised in the process of a META SQL query or a statement execution. It's not produced in the
JDBC or ORM layer, but in the SQL Processor engine itself. Primarily it devoted to the problems with the input/output
values handling.
For more info please see the Tutorials.
- Author:
- Vladimir Hudec
- See Also:
-
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionCreates a new instance of the exception.SqlRuntimeException
(String message) Creates a new instance of the exception.SqlRuntimeException
(String message, Throwable cause) Creates a new instance of the exception.SqlRuntimeException
(Throwable cause) Creates a new instance of the exception. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Field Details
-
serialVersionUID
private static final long serialVersionUID- See Also:
-
-
Constructor Details
-
SqlRuntimeException
public SqlRuntimeException()Creates a new instance of the exception. -
SqlRuntimeException
Creates a new instance of the exception.- Parameters:
message
- the error message
-
SqlRuntimeException
Creates a new instance of the exception.- Parameters:
cause
- the error cause
-
SqlRuntimeException
Creates a new instance of the exception.- Parameters:
message
- the error messagecause
- the error cause
-