java.io
Class IOException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by java.io.IOException

public class IOException
extends Exception

This exception is thrown to indicate an I/O problem of some sort occurred. Since this is a fairly generic exception, often a subclass of IOException will actually be thrown in order to provide a more detailed indication of what happened.


Constructor Summary
IOException()
          Create an exception without a descriptive error message.
IOException(String message)
          Create an exception with a descriptive error message.
 
Method Summary
 
Methods inherited from class java.lang.Throwable
getCause, getLocalizedMessage, getMessage, initCause, printStackTrace, printStackTrace, printStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

IOException

public IOException()
Create an exception without a descriptive error message.


IOException

public IOException(String message)
Create an exception with a descriptive error message.

Parameters:
message - the descriptive error message