KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > java > io > ObjectStreamException


1 /*
2  * @(#)ObjectStreamException.java 1.13 03/12/19
3  *
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 unascribed
14  * @version 1.13, 12/19/03
15  * @since JDK1.1
16  */

17 public abstract class ObjectStreamException extends IOException JavaDoc {
18     /**
19      * Create an ObjectStreamException with the specified argument.
20      *
21      * @param classname the detailed message for the exception
22      */

23     protected ObjectStreamException(String JavaDoc classname) {
24     super(classname);
25     }
26
27     /**
28      * Create an ObjectStreamException.
29      */

30     protected ObjectStreamException() {
31     super();
32     }
33 }
34
Popular Tags