Introduction
Table | Java.io Exceptions | Description |
|---|---|
| IOException | This exception represents when failure in I/O occurs. |
| FileNotFoundException | This exception represents that when attempting to open file through specified pathname has failed. |
| InvalidClassException | In serialization run time the class represented with inappropriate the this type of exception throws. |
| InvalidObjectException | This exception throws due to failure of validation of deserialized objects. |
| InterruptedIOException | This exception throws due to interruption in I/O operations. |
| ObjectStreamException | This exception throws due to object stream class. |
| NotSerializableException | This exception throws when the object required to have the serializable interface. |
| NotActiveException | This exception throws when the serialization or deserialization are not active. |
| WriteAbortedException | Because of during write operation the object stream exception throws. |
| SyncFailedException | This exception throws when synchronisation fails. |
| UnsupportedEncodingException | This exception throws when character encoding is not supported. |
| CharConversionException | This represents the basic class for character conversion exception. |
Example
Key Points