/[classpath]/classpath/java/io/InvalidObjectException.java
ViewVC logotype

Diff of /classpath/java/io/InvalidObjectException.java

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.4 by mark, Tue Jan 22 22:26:59 2002 UTC revision 1.5 by ericb, Sun Feb 24 04:25:16 2002 UTC
# Line 1  Line 1 
1  /* InvalidObjectException.java -- An I/O operation was interrupted.  /* InvalidObjectException.java -- deserialization failed verification
2     Copyright (C) 1998 Free Software Foundation, Inc.     Copyright (C) 1998, 2002 Free Software Foundation, Inc.
3    
4  This file is part of GNU Classpath.  This file is part of GNU Classpath.
5    
# Line 7  GNU Classpath is free software; you can Line 7  GNU Classpath is free software; you can
7  it under the terms of the GNU General Public License as published by  it under the terms of the GNU General Public License as published by
8  the Free Software Foundation; either version 2, or (at your option)  the Free Software Foundation; either version 2, or (at your option)
9  any later version.  any later version.
10    
11  GNU Classpath is distributed in the hope that it will be useful, but  GNU Classpath is distributed in the hope that it will be useful, but
12  WITHOUT ANY WARRANTY; without even the implied warranty of  WITHOUT ANY WARRANTY; without even the implied warranty of
13  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
# Line 39  exception statement from your version. * Line 39  exception statement from your version. *
39  package java.io;  package java.io;
40    
41  /**  /**
42    * This exception is thrown when an object fails a validation test   * This exception is thrown when an object fails a validation test
43    * during serialization.   * during serialization.
44    *   *
45    * @version 0.0   * @author Aaron M. Renn (arenn@urbanophile.com)
46    *   * @since 1.1
47    * @author Aaron M. Renn (arenn@urbanophile.com)   * @status updated to 1.4
   */  
 public class InvalidObjectException extends ObjectStreamException  
 {  
   
 /*  
  * Constructors  
48   */   */
49    public class InvalidObjectException extends ObjectStreamException
 /**  
   * Create a new InvalidObjectException with a descriptive error message String  
   *  
   * @param message The descriptive error message  
   */  
 public  
 InvalidObjectException(String message)  
50  {  {
51    super(message);    /**
52  }     * Compatible with JDK 1.1+.
53       */
54      private static final long serialVersionUID = 3233174318281839583L;
55    
56      /**
57       * Create an exception with a descriptive error message String. This should
58       * be the cause of the verification failure.
59       *
60       * @param message the descriptive error message
61       */
62      public InvalidObjectException(String message)
63      {
64        super(message);
65      }
66  } // class InvalidObjectException  } // class InvalidObjectException
   

Legend:
Removed from v.1.4  
changed lines
  Added in v.1.5

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26