java.io
Class NotActiveException

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

public class NotActiveException
extends ObjectStreamException

Thrown when serialization or deserialization is not active.

Since:
JDK1.1
See Also:
Serialized Form

Fields inherited from class java.lang.Throwable
backtrace, detailMessage, serialVersionUID
 
Constructor Summary
NotActiveException()
          Constructor to create a new NotActiveException without a reason.
NotActiveException(String reason)
          Constructor to create a new NotActiveException with the reason given.
 
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
 

Constructor Detail

NotActiveException

public NotActiveException(String reason)
Constructor to create a new NotActiveException with the reason given.

NotActiveException

public NotActiveException()
Constructor to create a new NotActiveException without a reason.