Class IOException

  • All Implemented Interfaces:
    java.io.Serializable

    public class IOException
    extends DataAccessException
    The jOOQ IOException is a wrapper for a IOException.
    Author:
    Lukas Eder
    See Also:
    Serialized Form
    • Constructor Summary

      Constructors 
      Constructor Description
      IOException​(java.lang.String message, java.io.IOException cause)
      Constructor for DataAccessException.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.io.IOException getCause()  
      java.lang.Throwable initCause​(java.lang.Throwable cause)  
      • Methods inherited from class java.lang.Throwable

        addSuppressed, fillInStackTrace, getLocalizedMessage, getMessage, getSuppressed, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • Constructor Detail

      • IOException

        public IOException​(java.lang.String message,
                           java.io.IOException cause)
        Constructor for DataAccessException.
        Parameters:
        message - the detail message
        cause - the root cause (usually from using a underlying data access API such as JDBC)
    • Method Detail

      • getCause

        public java.io.IOException getCause()
        Overrides:
        getCause in class java.lang.Throwable
      • initCause

        public java.lang.Throwable initCause​(java.lang.Throwable cause)
        Overrides:
        initCause in class java.lang.Throwable