java.io
Class IOException
java.lang.Object
|
+--java.lang.Throwable
|
+--java.lang.Exception
|
+--java.io.IOException
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.
Authors:- Aaron M. Renn (arenn@urbanophile.com)
- Tom Tromey <tromey@cygnus.com>
IOException
public IOException()
Create an exception without a descriptive error message.
IOException
public IOException(java.lang.String message)
Create an exception with a descriptive error message.
Parameters: