OSDN Git Service

Initial revision
[pf3gnuchains/gcc-fork.git] / libjava / java / net / UnknownHostException.java
1 // UnknownHostException.java
2
3 /* Copyright (C) 1998, 1999  Cygnus Solutions
4
5    This file is part of libgcj.
6
7 This software is copyrighted work licensed under the terms of the
8 Libgcj License.  Please consult the file "LIBGCJ_LICENSE" for
9 details.  */
10
11 package java.net;
12
13 /**
14  * @author Per Bothner
15  * @date January 6, 1999.
16  */
17
18 /*
19  * Written using on-line Java Platform 1.2 API Specification.
20  * Status:  Believed complete and correct.
21  */
22
23 public class UnknownHostException extends java.io.IOException
24 {
25   public UnknownHostException ()
26   {
27     super();
28   }
29
30   public UnknownHostException (String host)
31   {
32     super(host);
33   }
34 }