Most visited

Recently visited

Added in API level 1

OptionalDataException

public class OptionalDataException
extends ObjectStreamException

java.lang.Object
   ↳ java.lang.Throwable
     ↳ java.lang.Exception
       ↳ java.io.IOException
         ↳ java.io.ObjectStreamException
           ↳ java.io.OptionalDataException


Exception indicating the failure of an object read operation due to unread primitive data, or the end of data belonging to a serialized object in the stream. This exception may be thrown in two cases:

Summary

Fields

public boolean eof

True if there is no more data in the buffered part of the stream.

public int length

The number of bytes of primitive data available to be read in the current buffer.

Inherited methods

From class java.lang.Throwable
From class java.lang.Object

Fields

eof

Added in API level 1
boolean eof

True if there is no more data in the buffered part of the stream.

length

Added in API level 1
int length

The number of bytes of primitive data available to be read in the current buffer.

Hooray!