jdk/src/java.base/share/classes/java/io/ObjectStreamException.java
changeset 29712 833acdf3b1d1
parent 25859 3317bb8137f4
equal deleted inserted replaced
29617:4922c98744c7 29712:833acdf3b1d1
    36     private static final long serialVersionUID = 7260898174833392607L;
    36     private static final long serialVersionUID = 7260898174833392607L;
    37 
    37 
    38     /**
    38     /**
    39      * Create an ObjectStreamException with the specified argument.
    39      * Create an ObjectStreamException with the specified argument.
    40      *
    40      *
    41      * @param classname the detailed message for the exception
    41      * @param message the detailed message for the exception
    42      */
    42      */
    43     protected ObjectStreamException(String classname) {
    43     protected ObjectStreamException(String message) {
    44         super(classname);
    44         super(message);
    45     }
    45     }
    46 
    46 
    47     /**
    47     /**
    48      * Create an ObjectStreamException.
    48      * Create an ObjectStreamException.
    49      */
    49      */