java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.jooq.exception.DataAccessException
org.jooq.exception.DataTypeException
- All Implemented Interfaces:
Serializable
An error occurred while handling data types. This typically happens when
converting types
- Author:
- Lukas Eder
- See Also:
-
Constructor Summary
ConstructorDescriptionDataTypeException
(String message) Constructor for DataTypeException.DataTypeException
(String message, Throwable cause) Constructor for DataTypeException. -
Method Summary
Methods inherited from class org.jooq.exception.DataAccessException
getCause, getStackTrace, sqlState, sqlStateClass, sqlStateClass, sqlStateClass, sqlStateSubclass
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
DataTypeException
Constructor for DataTypeException.- Parameters:
message
- the detail message
-
DataTypeException
Constructor for DataTypeException.- Parameters:
message
- the detail messagecause
- the root cause (usually from using a underlying data access API such as JDBC)
-