KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jivesoftware > messenger > ChannelNotFoundException


1 /**
2  * $RCSfile: ChannelNotFoundException.java,v $
3  * $Revision: 1.2 $
4  * $Date: 2004/10/25 23:41:56 $
5  *
6  * Copyright (C) 2004 Jive Software. All rights reserved.
7  *
8  * This software is published under the terms of the GNU Public License (GPL),
9  * a copy of which is included in this distribution.
10  */

11
12 package org.jivesoftware.messenger;
13
14 /**
15  * Thrown when a channel lookup fails to find the specified channel.
16  *
17  * @author Matt Tucker
18  */

19 public class ChannelNotFoundException extends RuntimeException JavaDoc {
20
21     public ChannelNotFoundException() {
22         super();
23     }
24
25     public ChannelNotFoundException(String JavaDoc msg) {
26         super(msg);
27     }
28 }
29
Popular Tags