- Timestamp:
- Apr 27, 2004, 8:39:34 PM (22 years ago)
- Location:
- branches/GNU/src/gcc
- Files:
-
- 2 edited
-
. (modified) (1 prop)
-
libjava/java/net/UnknownServiceException.java (modified) (3 diffs, 1 prop)
Legend:
- Unmodified
- Added
- Removed
-
branches/GNU/src/gcc
- Property svn:ignore
-
old new 26 26 configure.vr 27 27 configure.vrs 28 28 29 Makefile 29 dir.info30 30 lost+found 31 31 update.out
-
- Property svn:ignore
-
branches/GNU/src/gcc/libjava/java/net/UnknownServiceException.java
-
Property cvs2svn:cvs-rev
changed from
1.1to1.1.1.2
r1390 r1391 1 1 /* 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. 3 3 4 4 This file is part of GNU Classpath. … … 8 8 the Free Software Foundation; either version 2, or (at your option) 9 9 any later version. 10 10 11 11 GNU Classpath is distributed in the hope that it will be useful, but 12 12 WITHOUT ANY WARRANTY; without even the implied warranty of … … 38 38 package java.net; 39 39 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 */ 40 import java.io.IOException; 45 41 46 42 /** 47 * Contrary to what you might think, this does not indicate that the48 * TCP/IP service name specified was invalid. Instead it indicates that49 * the MIME type returned from a URL could not be determined or that an50 * 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.IOException43 * 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 */ 52 public class UnknownServiceException extends IOException 57 53 { 54 55 56 57 58 58 59 /* 60 * Constructors 61 */ 59 /** 60 * Create a new instance without a descriptive error message. 61 */ 62 public UnknownServiceException() 63 { 64 } 62 65 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 } 87 75 } // class UnknownServiceException 88 -
Property cvs2svn:cvs-rev
changed from
Note:
See TracChangeset
for help on using the changeset viewer.
