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
858 B
54 lines
858 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;
|
|
|
|
/**
|
|
* Superclass of all exceptions specific to Object Stream classes.
|
|
*
|
|
* @author unascribed
|
|
* @since JDK1.1
|
|
*/
|
|
public abstract class ObjectStreamException extends IOException {
|
|
|
|
private static final long serialVersionUID = 7260898174833392607L;
|
|
|
|
/**
|
|
* Create an ObjectStreamException with the specified argument.
|
|
*
|
|
* @param classname the detailed message for the exception
|
|
*/
|
|
protected ObjectStreamException(String classname) {
|
|
super(classname);
|
|
}
|
|
|
|
/**
|
|
* Create an ObjectStreamException.
|
|
*/
|
|
protected ObjectStreamException() {
|
|
super();
|
|
}
|
|
}
|