Uses of Package
org.jooq.exception
-
Packages that use org.jooq.exception Package Description org.jooq Theorg.jooq
package contains jOOQ's public API.org.jooq.exception Theorg.jooq.exception
package contains jOOQ's exceptions.org.jooq.impl Theorg.jooq.impl
package contains jOOQ's implementation classes.org.jooq.tools Theorg.jooq.tools
package contains jOOQ's public utilities. -
Classes in org.jooq.exception used by org.jooq Class Description ConfigurationException TheConfiguration
was set up in a way that does not allow for a particular operation.DataAccessException TheDataAccessException
is a genericRuntimeException
indicating that something went wrong while executing a SQL statement from jOOQ.DataChangedException An error occurred while storing a record whose underlying data had already been changedDataMigrationException An error occurred while running aMigration
.DataMigrationValidationException An error occurred while runningMigration.validate()
.DataTypeException An error occurred while handling data types.InvalidResultException An unexpected result was encountered after executing aQuery
.IOException The jOOQIOException
is a wrapper for aIOException
.MappingException An error occurred while fetching data into a user defined Java object with any of these methods:ResultQuery.fetchInto(Class)
Cursor.fetchInto(Class)
Result.into(Class)
Record.into(Class)
...NoDataFoundException No rows were returned from aResultQuery
, when exactly one row was expected.TooManyRowsException Too many rows (more than 1) were returned from aResultQuery
. -
Classes in org.jooq.exception used by org.jooq.exception Class Description DataAccessException TheDataAccessException
is a genericRuntimeException
indicating that something went wrong while executing a SQL statement from jOOQ.DataMigrationException An error occurred while running aMigration
.InvalidResultException An unexpected result was encountered after executing aQuery
.SQLStateClass The class of the SQL state as specified by the SQL:2011 standard, or by individual vendors.SQLStateSubclass The subclass of the SQL state class as specified by the SQL standard, or by individual vendors. -
Classes in org.jooq.exception used by org.jooq.impl Class Description DataAccessException TheDataAccessException
is a genericRuntimeException
indicating that something went wrong while executing a SQL statement from jOOQ.SQLDialectNotSupportedException An exception thrown if an SQL construct is used, which is not supported by the dialect set inConfiguration.dialect()
SQLStateSubclass The subclass of the SQL state class as specified by the SQL standard, or by individual vendors. -
Classes in org.jooq.exception used by org.jooq.tools Class Description DataTypeException An error occurred while handling data types.