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/net/UnknownServiceException.java

    • Property cvs2svn:cvs-rev changed from 1.1 to 1.1.1.2
    r1390 r1391  
    11/* UnknownServiceException.java -- A service error occurred
    2    Copyright (C) 1998, 1999, 2000, 2001 Free Software Foundation, Inc.
     2   Copyright (C) 1998, 1999, 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
     
    3838package java.net;
    3939
    40 /**
    41  * Written using on-line Java Platform 1.2 API Specification, as well
    42  * as "The Java Class Libraries", 2nd edition (Addison-Wesley, 1998).
    43  * Status:  Believed complete and correct.
    44  */
     40import java.io.IOException;
    4541
    4642/**
    47   * Contrary to what you might think, this does not indicate that the
    48   * TCP/IP service name specified was invalid.  Instead it indicates that
    49   * the MIME type returned from a URL could not be determined or that an
    50   * attempt was made to write to a read-only URL.
    51   *
    52   * @author Aaron M. Renn ([email protected])
    53   * @author Warren Levy <[email protected]>
    54   * @date March 5, 1999.
    55   */
    56 public class UnknownServiceException extends java.io.IOException
     43 * Contrary to what you might think, this does not indicate that the
     44 * TCP/IP service name specified was invalid.  Instead it indicates that
     45 * the MIME type returned from a URL could not be determined or that an
     46 * attempt was made to write to a read-only URL.
     47 *
     48 
     49 * @author Warren Levy <[email protected]>
     50 
     51 */
     52public class UnknownServiceException extends IOException
    5753{
     54
     55
     56
     57
    5858
    59 /*
    60  * Constructors
    61  */
     59  /**
     60   * Create a new instance without a descriptive error message.
     61   */
     62  public UnknownServiceException()
     63  {
     64  }
    6265
    63 /**
    64   * Initializes a new instance of <code>UnknownServiceException</code>
    65   * without a descriptive error message.
    66   */
    67 public
    68 UnknownServiceException()
    69 {
    70   super();
    71 }
    72 
    73 /*************************************************************************/
    74 
    75 /**
    76   * Initializes a new instance of <code>UnknownServiceException</code>
    77   * without a descriptive error message.
    78   *
    79   * @param message A message describing the error that occurred.
    80   */
    81 public
    82 UnknownServiceException(String message)
    83 {
    84   super(message);
    85 }
    86 
     66  /**
     67   * Create a new instance with a descriptive error message.
     68   *
     69   * @param message a message describing the error that occurred
     70   */
     71  public UnknownServiceException(String message)
     72  {
     73    super(message);
     74  }
    8775} // class UnknownServiceException
    88 
Note: See TracChangeset for help on using the changeset viewer.