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/NotActiveException.java

    • Property cvs2svn:cvs-rev changed from 1.1 to 1.1.1.2
    r1390 r1391  
    1 /* NotActiveException.java -- Unexpected end of file exception
    2    Copyright (C) 1998 Free Software Foundation, Inc.
     1/* NotActiveException.java --
     2   Copyright (C) 1998 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
     
    4040
    4141/**
    42   * This exception is thrown when a problem occurs due to the fact that
    43   * serialization is not active.
    44   *
    45   * @version 0.0
    46   *
    47   * @author Aaron M. Renn ([email protected])
    48   */
     42 * This exception is thrown when a problem occurs due to the fact that
     43 * serialization is not active.
     44 *
     45 
     46 
     47 
     48 */
    4949public class NotActiveException extends ObjectStreamException
    5050{
     51
     52
     53
     54
    5155
    52 /*
    53  * Constructors
    54  */
     56  /**
     57   * Create an exception without a descriptive error message.
     58   */
     59  public NotActiveException()
     60  {
     61  }
    5562
    56 /**
    57   * Create a new NotActiveException without a descriptive error message
    58   */
    59 public
    60 NotActiveException()
    61 {
    62   super();
    63 }
    64 
    65 /*************************************************************************/
    66 
    67 /**
    68   * Create a new NotActiveException with a descriptive error message String
    69   *
    70   * @param message The descriptive error message
    71   */
    72 public
    73 NotActiveException(String message)
    74 {
    75   super(message);
    76 }
    77 
     63  /**
     64   * Create an exception with a descriptive error message.
     65   *
     66   * @param message the descriptive error message
     67   */
     68  public NotActiveException(String message)
     69  {
     70    super(message);
     71  }
    7872} // class NotActiveException
    79 
Note: See TracChangeset for help on using the changeset viewer.