Class SqlRuntimeException

All Implemented Interfaces:
Serializable

public class SqlRuntimeException extends RuntimeException
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 Details

  • Constructor Details

    • SqlRuntimeException

      public SqlRuntimeException()
      Creates a new instance of the exception.
    • SqlRuntimeException

      public SqlRuntimeException(String message)
      Creates a new instance of the exception.
      Parameters:
      message - the error message
    • SqlRuntimeException

      public SqlRuntimeException(Throwable cause)
      Creates a new instance of the exception.
      Parameters:
      cause - the error cause
    • SqlRuntimeException

      public SqlRuntimeException(String message, Throwable cause)
      Creates a new instance of the exception.
      Parameters:
      message - the error message
      cause - the error cause