java.io
Class NotActiveException
java.lang.Object
|
+--java.lang.Throwable
|
+--java.lang.Exception
|
+--java.io.IOException
|
+--java.io.ObjectStreamException
|
+--java.io.NotActiveException
- All Implemented Interfaces:
- Serializable
- public class NotActiveException
- extends ObjectStreamException
Untamed: Thrown when serialization or deserialization is not active.
- Since:
- JDK1.1
- Version:
- 1.13, 12/03/01
- Author:
- unascribed
- See Also:
- Serialized Form
Fields inherited from class java.lang.Exception |
|
Fields inherited from class java.lang.Throwable |
|
Constructor Summary |
NotActiveException()
Enabled: Constructor to create a new NotActiveException without a reason. |
NotActiveException(String reason)
Enabled: Constructor to create a new NotActiveException with the reason given. |
Methods inherited from class java.lang.Throwable |
backtrace, eStack, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, javaStack, leaf, printStackTrace, printStackTrace, printStackTrace, printThrowableOn, setStackTrace, toString, unwrap |
NotActiveException
public NotActiveException(String reason)
- Enabled: Constructor to create a new NotActiveException with the reason given.
- Parameters:
reason
- a String describing the reason for the exception.
NotActiveException
public NotActiveException()
- Enabled: Constructor to create a new NotActiveException without a reason.
comments?