| java.lang.Object java.lang.Throwable java.lang.Exception java.io.IOException
All known Subclasses: javax.wireless.messaging.SizeExceededException, com.sun.kvem.midp.pim.UnsupportedPIMFormatException, java.io.CharConversionException, com.sun.midp.links.ClosedLinkException, sun.net.TelnetProtocolException, java.net.ProtocolException, javax.bluetooth.BluetoothConnectionException, javax.microedition.content.ContentHandlerException, sun.misc.CEStreamExhausted, java.io.EOFException, java.io.SyncFailedException, java.io.FileNotFoundException, java.net.UnknownHostException, java.io.InterruptedIOException, sun.misc.CEFormatException, com.sun.satsa.util.TLVException, sun.net.ftp.FtpProtocolException, com.sun.tck.wma.SizeExceededException, javax.bluetooth.ServiceRegistrationException, javax.microedition.pki.CertificateException, com.sun.midp.installer.InvalidJadException, javax.bluetooth.BluetoothStateException, javax.microedition.sip.SipException, sun.security.pkcs.ParsingException, java.net.MalformedURLException, javax.microedition.io.ConnectionNotFoundException, java.io.UnsupportedEncodingException, java.util.zip.ZipException, java.rmi.RemoteException, sun.applet.AppletIOException, java.net.SocketException, java.io.ObjectStreamException, java.net.UnknownServiceException, sun.audio.InvalidAudioFormatException, util.DataFormatException, java.io.UTFDataFormatException,
IOException | public class IOException extends Exception (Code) | | Signals that an I/O exception of some sort has occurred. This
class is the general class of exceptions produced by failed or
interrupted I/O operations.
version: 12/17/01 (CLDC 1.1) See Also: java.io.InputStream See Also: java.io.OutputStream since: JDK1.0, CLDC 1.0 |
Constructor Summary | |
public | IOException() Constructs an IOException with null
as its error detail message. | public | IOException(String s) Constructs an IOException with the specified detail
message. |
IOException | public IOException()(Code) | | Constructs an IOException with null
as its error detail message.
|
IOException | public IOException(String s)(Code) | | Constructs an IOException with the specified detail
message. The error message string s can later be
retrieved by the
java.lang.Throwable.getMessage
method of class java.lang.Throwable .
Parameters: s - the detail message. |
|
|