KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > nightlabs > rcp > exceptionhandler > DuplicateHandlerRegistryException


1 /*
2  * Created on Mar 24, 2005
3  * by alex
4  *
5  */

6 package com.nightlabs.rcp.exceptionhandler;
7
8 /**
9  * @author Alexander Bieber <alex[AT]nightlabs[DOT]de>
10  *
11  */

12 public class DuplicateHandlerRegistryException extends RuntimeException JavaDoc {
13
14     /**
15      *
16      */

17     public DuplicateHandlerRegistryException() {
18         super();
19     }
20
21     /**
22      * @param message
23      * @param cause
24      */

25     public DuplicateHandlerRegistryException(String JavaDoc message, Throwable JavaDoc cause) {
26         super(message, cause);
27     }
28
29     /**
30      * @param message
31      */

32     public DuplicateHandlerRegistryException(String JavaDoc message) {
33         super(message);
34     }
35
36     /**
37      * @param cause
38      */

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