KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > java > nio > channels > UnresolvedAddressException


1 /*
2  * @(#)UnresolvedAddressException.java 1.9 01/11/19
3  *
4  * Copyright 2000 by Sun Microsystems, Inc. All Rights Reserved.
5  *
6  * This software is the proprietary information of Sun Microsystems, Inc.
7  * Use is subject to license terms.
8  */

9
10 // -- This file was mechanically generated: Do not edit! -- //
11

12 package java.nio.channels;
13
14
15 /**
16  * Unchecked exception thrown when an attempt is made to invoke a network
17  * operation upon an unresolved socket address.
18  *
19  * @version 1.9, 01/11/19
20  * @since 1.4
21  */

22
23 public class UnresolvedAddressException
24     extends IllegalArgumentException JavaDoc
25 {
26
27     /**
28      * Constructs an instance of this class.
29      */

30     public UnresolvedAddressException() { }
31
32 }
33
Popular Tags