Package org.kiwiproject.beta.jdbc
Class RuntimeSQLException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.kiwiproject.beta.jdbc.RuntimeSQLException
- All Implemented Interfaces:
Serializable
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 Summary
ConstructorsConstructorDescriptionRuntimeSQLException(String message, SQLException cause) Constructs an instance of this class.RuntimeSQLException(SQLException cause) Constructs an instance of this class. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
RuntimeSQLException
Constructs an instance of this class.- Parameters:
message- the detail messagecause- theSQLExceptionwhich is the cause
-
RuntimeSQLException
Constructs an instance of this class.- Parameters:
cause- theSQLExceptionwhich is the cause
-
-
Method Details
-
getCause
Returns the cause of this exception.- Overrides:
getCausein classThrowable- Returns:
- the
SQLExceptionwhich is the cause of this exception.
-