Package org.tmatesoft.sqljet.core
Class SqlJetError
java.lang.Object
java.lang.Throwable
java.lang.Error
org.tmatesoft.sqljet.core.SqlJetError
- All Implemented Interfaces:
Serializable
SQLJet's runtime error.
- Author:
- TMate Software Ltd., Sergey Scherbina (sergey.scherbina@gmail.com)
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionSqlJetError
(String message) Create error with message.SqlJetError
(String message, Throwable cause) Create error with message and caused by reason.SqlJetError
(Throwable cause) Create error caused by some reason. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
SqlJetError
Create error with message.- Parameters:
message
- message string
-
SqlJetError
Create error caused by some reason.- Parameters:
cause
- the reason of error.
-
SqlJetError
Create error with message and caused by reason.- Parameters:
message
- the message string.cause
- the reason of error.
-