Ignore:
Timestamp:
Apr 27, 2004, 8:39:34 PM (22 years ago)
Author:
bird
Message:

GCC v3.3.3 sources.

Location:
branches/GNU/src/gcc
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/GNU/src/gcc

    • Property svn:ignore
      •  

        old new  
        2626configure.vr
        2727configure.vrs
         28
        2829Makefile
        29 dir.info
        3030lost+found
        3131update.out
  • branches/GNU/src/gcc/libjava/java/io/ObjectStreamException.java

    • Property cvs2svn:cvs-rev changed from 1.1 to 1.1.1.2
    r1390 r1391  
    1 /* ObjectStreamException.java -- Superclass of all serialisation exceptions
    2    Copyright (C) 1998, 2000, 2001 Free Software Foundation, Inc.
     1/* ObjectStreamException.java -- Superclass of all serialiation exceptions
     2   Copyright (C) 1998, 2000, 2001 Free Software Foundation, Inc.
    33
    44This file is part of GNU Classpath.
     
    88the Free Software Foundation; either version 2, or (at your option)
    99any later version.
    10  
     10
    1111GNU Classpath is distributed in the hope that it will be useful, but
    1212WITHOUT ANY WARRANTY; without even the implied warranty of
     
    3939package java.io;
    4040
    41 /* Written using on-line Java Platform 1.2 API Specification.
    42  * Status:  Believed complete and correct.
     41/**
     42 * This exception is thrown when a problem occurs during serialization.
     43 * There are more specific subclasses than give more fine grained
     44 * indications of the precise failure.
     45 *
     46 * @author Aaron M. Renn ([email protected])
     47 * @author Warren Levy <[email protected]>
     48 * @since 1.1
     49 * @status updated to 1.4
    4350 */
     51
     52
     53
     54
     55
     56
    4457
    45 /**
    46   * This exception is thrown when a problem occurs during serialization.
    47   * There are more specific subclasses than give more fine grained
    48   * indications of the precise failure.
    49   *
    50   * @version 0.0
    51   *
    52   * @author Aaron M. Renn ([email protected])
    53   * @author Warren Levy <[email protected]>
    54   * @date February 7, 2000.
    55   */
    56 public abstract class ObjectStreamException extends IOException
    57 {
     58  /**
     59   * Create an exception without a descriptive error message.
     60   */
     61  protected ObjectStreamException()
     62  {
     63  }
    5864
    59 /*
    60  * Constructors
    61  */
    62 
    63 /**
    64   * Create a new ObjectStreamException without a descriptive error message
    65   */
    66 protected
    67 ObjectStreamException()
    68 {
    69   super();
    70 }
    71 
    72 /*************************************************************************/
    73 
    74 /**
    75   * Create a new ObjectStreamException with a descriptive error message String
    76   *
    77   * @param message The descriptive error message
    78   */
    79 protected
    80 ObjectStreamException(String message)
    81 {
    82   super(message);
    83 }
    84 
     65  /**
     66   * Create an exception with a descriptive error message.
     67   *
     68   * @param message the descriptive error message
     69   */
     70  protected ObjectStreamException(String message)
     71  {
     72    super(message);
     73  }
    8574} // class ObjectStreamException
    86 
Note: See TracChangeset for help on using the changeset viewer.