You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
54 lines
885 B
54 lines
885 B
/*
|
|
* Copyright (c) 1996, 2005, Oracle and/or its affiliates. All rights reserved.
|
|
* ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*/
|
|
|
|
package java.io;
|
|
|
|
/**
|
|
* Thrown when serialization or deserialization is not active.
|
|
*
|
|
* @author unascribed
|
|
* @since JDK1.1
|
|
*/
|
|
public class NotActiveException extends ObjectStreamException {
|
|
|
|
private static final long serialVersionUID = -3893467273049808895L;
|
|
|
|
/**
|
|
* Constructor to create a new NotActiveException with the reason given.
|
|
*
|
|
* @param reason a String describing the reason for the exception.
|
|
*/
|
|
public NotActiveException(String reason) {
|
|
super(reason);
|
|
}
|
|
|
|
/**
|
|
* Constructor to create a new NotActiveException without a reason.
|
|
*/
|
|
public NotActiveException() {
|
|
super();
|
|
}
|
|
}
|