KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > exoplatform > container > jmx > MX4JRegistrationException


1 /*****************************************************************************
2  * Copyright (C) NanoContainer Organization. All rights reserved. *
3  * ------------------------------------------------------------------------- *
4  * The software in this package is published under the terms of the BSD *
5  * style license a copy of which has been included with this distribution in *
6  * the LICENSE.txt file. *
7  * *
8  * Original code by James Strachan and Mauro Talevi *
9  *****************************************************************************/

10 package org.exoplatform.container.jmx;
11
12 import org.picocontainer.PicoRegistrationException;
13
14 /**
15  * A registration exception caused trying to register the component with JMX
16  *
17  * @author James Strachan
18  * @author Mauro Talevi
19  * @author Jeppe Cramon
20  * @version $Revision: 1.2 $
21  */

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