KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jivesoftware > messenger > group > GroupAlreadyExistsException


1 /**
2  * $RCSfile: GroupAlreadyExistsException.java,v $
3  * $Revision: 1.2 $
4  * $Date: 2004/12/13 18:06:53 $
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.group;
13
14 /**
15  * Thrown when attempting to create a group that already exists.
16  *
17  * @author Iain Shigeoka
18  */

19 public class GroupAlreadyExistsException extends Exception JavaDoc {
20
21
22     public GroupAlreadyExistsException() {
23         super();
24     }
25
26     public GroupAlreadyExistsException(String JavaDoc message) {
27         super(message);
28     }
29
30     public GroupAlreadyExistsException(Throwable JavaDoc cause) {
31         super(cause);
32     }
33
34     public GroupAlreadyExistsException(String JavaDoc message, Throwable JavaDoc cause) {
35         super(message, cause);
36     }
37 }
Popular Tags