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
@Beta public class RuntimeSQLException extends RuntimeException
Unchecked exception that wraps aSQLException.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:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description RuntimeSQLException(String message, SQLException cause)Constructs an instance of this class.RuntimeSQLException(SQLException cause)Constructs an instance of this class.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description SQLExceptiongetCause()Returns the cause of this exception.-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
RuntimeSQLException
public RuntimeSQLException(String message, SQLException cause)
Constructs an instance of this class.- Parameters:
message- the detail messagecause- theSQLExceptionwhich is the cause
-
RuntimeSQLException
public RuntimeSQLException(SQLException cause)
Constructs an instance of this class.- Parameters:
cause- theSQLExceptionwhich is the cause
-
-
Method Detail
-
getCause
public SQLException getCause()
Returns the cause of this exception.- Overrides:
getCausein classThrowable- Returns:
- the
SQLExceptionwhich is the cause of this exception.
-
-