KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > nightlabs > ipanema > organisation > OrganisationAlreadyRegisteredException


1 /*
2  * Created on Dec 24, 2004
3  */

4 package com.nightlabs.ipanema.organisation;
5
6 import com.nightlabs.ModuleException;
7
8 /**
9  * @author Marco Schulze - marco at nightlabs dot de
10  */

11 public class OrganisationAlreadyRegisteredException extends ModuleException
12 {
13
14     public OrganisationAlreadyRegisteredException()
15     {
16     }
17
18     /**
19      * @param message
20      */

21     public OrganisationAlreadyRegisteredException(String JavaDoc message)
22     {
23         super(message);
24     }
25
26     /**
27      * @param message
28      * @param cause
29      */

30     public OrganisationAlreadyRegisteredException(String JavaDoc message, Throwable JavaDoc cause)
31     {
32         super(message, cause);
33     }
34
35     /**
36      * @param cause
37      */

38     public OrganisationAlreadyRegisteredException(Throwable JavaDoc cause)
39     {
40         super(cause);
41     }
42
43 }
44
Popular Tags