KickJava   Java API By Example, From Geeks To Geeks.

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


1 /**
2  * $RCSfile: SharedGroupException.java,v $
3  * $Revision: 1.1 $
4  * $Date: 2005/01/02 18:11:44 $
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 a user is trying to add or remove a contact from his/her roster that belongs to a
16  * shared group.
17  *
18  * @author Gaston Dombiak
19  */

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