java.io
Class OptionalDataException

java.lang.Object
  |
  +--java.lang.Throwable
        |
        +--java.lang.Exception
              |
              +--java.io.IOException
                    |
                    +--java.io.ObjectStreamException
                          |
                          +--java.io.OptionalDataException

public class OptionalDataException
extends ObjectStreamException

Unexpected data appeared in an ObjectInputStream trying to read an Object. Occurs when the stream contains primitive data instead of the object that is expected by readObject. The EOF flag in the exception is true indicating that no more primitive data is available. The count field contains the number of bytes available to read.

Since:
JDK1.1
See Also:
Serialized Form

Field Summary
 boolean eof
          True if there is no more data in the buffered part of the stream.
 int length
          The number of bytes of primitive data available to be read in the current buffer.
 
Fields inherited from class java.lang.Throwable
backtrace, detailMessage, serialVersionUID
 
Constructor Summary
(package private) OptionalDataException(boolean end)
           
(package private) OptionalDataException(int len)
           
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getLocalizedMessage, getMessage, printStackTrace, printStackTrace, printStackTrace, printStackTrace0, toString
 
Methods inherited from class java.lang.Object
, clone, equals, finalize, getClass, hashCode, notify, notifyAll, registerNatives, wait, wait, wait
 

Field Detail

length

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

eof

public boolean eof
True if there is no more data in the buffered part of the stream.
Constructor Detail

OptionalDataException

OptionalDataException(int len)

OptionalDataException

OptionalDataException(boolean end)