java.lang.Object
java.lang.Throwable
java.lang.Exception
java.io.IOException
java.io.ObjectStreamException
java.io.NotActiveException
- All Implemented Interfaces:
- Serializable
Thrown when serialization or deserialization is not active.
- Since:
- 1.1
- See Also:
- 
Constructor SummaryConstructorsConstructorDescriptionConstructor to create a new NotActiveException without a reason.NotActiveException(String reason) Constructor to create a new NotActiveException with the reason given.
- 
Method SummaryMethods declared in class java.lang.ThrowableaddSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
- 
Constructor Details- 
NotActiveExceptionConstructor to create a new NotActiveException with the reason given.- Parameters:
- reason- a String describing the reason for the exception.
 
- 
NotActiveExceptionpublic NotActiveException()Constructor to create a new NotActiveException without a reason.
 
-