1 /*2 * @(#)ObjectStreamException.java 1.13 03/12/193 *4 * Copyright 2004 Sun Microsystems, Inc. All rights reserved.5 * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.6 */7 8 package java.io;9 10 /**11 * Superclass of all exceptions specific to Object Stream classes.12 *13 * @author unascribed14 * @version 1.13, 12/19/0315 * @since JDK1.116 */17 public abstract class ObjectStreamException extends IOException {18 /**19 * Create an ObjectStreamException with the specified argument.20 *21 * @param classname the detailed message for the exception22 */23 protected ObjectStreamException(String classname) {24 super(classname);25 }26 27 /**28 * Create an ObjectStreamException.29 */30 protected ObjectStreamException() {31 super();32 }33 }34