- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- org.jooq.exception.DataAccessException
-
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
ConfigurationException
,DataChangedException
,DataTypeException
,DetachedException
,InvalidResultException
,IOException
,LoaderConfigurationException
,MappingException
,MockFileDatabaseException
,ParserException
public class DataAccessException extends RuntimeException
TheDataAccessException
is a genericRuntimeException
indicating that something went wrong while executing a SQL statement from jOOQ. The idea behind this unchecked exception is borrowed from Spring's JDBC's DataAccessException- Author:
- Sergey Epik - Merged into jOOQ from Spring JDBC Support, Lukas Eder
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description DataAccessException(String message)
Constructor for DataAccessException.DataAccessException(String message, Throwable cause)
Constructor for DataAccessException.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description <T extends Throwable>
TgetCause(Class<? extends T> type)
Find a root cause of a given type, ornull
if no root cause of that type was found.StackTraceElement[]
getStackTrace()
String
sqlState()
Retrieve theSQLException.getSQLState()
fromThrowable.getCause()
, if thisDataAccessException
was caused by aSQLException
.SQLStateClass
sqlStateClass()
Decode theSQLException.getSQLState()
fromThrowable.getCause()
intoSQLStateClass
, if thisDataAccessException
was caused by aSQLException
.SQLStateSubclass
sqlStateSubclass()
Decode theSQLException.getSQLState()
fromThrowable.getCause()
intoSQLStateSubclass
, if thisDataAccessException
was caused by aSQLException
.-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
DataAccessException
public DataAccessException(String message)
Constructor for DataAccessException.- Parameters:
message
- the detail message
-
-
Method Detail
-
sqlState
public String sqlState()
Retrieve theSQLException.getSQLState()
fromThrowable.getCause()
, if thisDataAccessException
was caused by aSQLException
.
-
sqlStateClass
public SQLStateClass sqlStateClass()
Decode theSQLException.getSQLState()
fromThrowable.getCause()
intoSQLStateClass
, if thisDataAccessException
was caused by aSQLException
.
-
sqlStateSubclass
public SQLStateSubclass sqlStateSubclass()
Decode theSQLException.getSQLState()
fromThrowable.getCause()
intoSQLStateSubclass
, if thisDataAccessException
was caused by aSQLException
.
-
getStackTrace
public StackTraceElement[] getStackTrace()
- Overrides:
getStackTrace
in classThrowable
-
-