Class RuntimeSQLException

All Implemented Interfaces:
Serializable

@Beta public class RuntimeSQLException extends RuntimeException
Unchecked exception that wraps a SQLException.

You should prefer kiwi's UncheckedSQLException over this exception class for the reasons described below.

This exception class was copied from kiwi-test. Later, kiwi version 4.2.0 added UncheckedSQLException. The RuntimeSQLException in kiwi-test was then deprecated, scheduled for removal in version 5.0.0.

There are no current plans to deprecate or remove this class, but that may change in a future release. So, we suggest changing any code using this exception class to use kiwi's UncheckedSQLException instead.

See Also:
  • Constructor Details

    • RuntimeSQLException

      public RuntimeSQLException(String message, SQLException cause)
      Constructs an instance of this class.
      Parameters:
      message - the detail message
      cause - the SQLException which is the cause
    • RuntimeSQLException

      public RuntimeSQLException(SQLException cause)
      Constructs an instance of this class.
      Parameters:
      cause - the SQLException which is the cause
  • Method Details