- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- org.jooq.exception.DataAccessException
-
- org.jooq.exception.IOException
-
- All Implemented Interfaces:
Serializable
public class IOException extends DataAccessException
The jOOQIOException
is a wrapper for aIOException
.- Author:
- Lukas Eder
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description IOException(String message, IOException cause)
Constructor for DataAccessException.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description IOException
getCause()
Throwable
initCause(Throwable cause)
-
Methods inherited from class org.jooq.exception.DataAccessException
getCause, getStackTrace, sqlState, sqlStateClass, sqlStateSubclass
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getLocalizedMessage, getMessage, getSuppressed, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
IOException
public IOException(String message, IOException cause)
Constructor for DataAccessException.- Parameters:
message
- the detail messagecause
- the root cause (usually from using a underlying data access API such as JDBC)
-
-