Class RuntimeSQLException

All Implemented Interfaces:
Serializable

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

Note: This was copied from kiwi-test. I am not sure why we put this in kiwi-test instead of kiwi. It should probably be moved to kiwi, then maybe deprecated and removed from kiwi-test, though it would not hurt anything to leave it.

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