KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > transport > channel > NoSuchChannelException


1 package transport.channel;
2 /**
3  *
4  */

5 public class NoSuchChannelException extends Exception JavaDoc
6 {
7     private int channelID;
8     public NoSuchChannelException(int id)
9     {
10         super();
11         channelID = id;
12     }
13     public int getID()
14     {
15         return channelID;
16     }
17 }
18
Popular Tags