KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > sun > enterprise > admin > meta > MBeanMetaException


1 /*
2  * The contents of this file are subject to the terms
3  * of the Common Development and Distribution License
4  * (the License). You may not use this file except in
5  * compliance with the License.
6  *
7  * You can obtain a copy of the license at
8  * https://glassfish.dev.java.net/public/CDDLv1.0.html or
9  * glassfish/bootstrap/legal/CDDLv1.0.txt.
10  * See the License for the specific language governing
11  * permissions and limitations under the License.
12  *
13  * When distributing Covered Code, include this CDDL
14  * Header Notice in each file and include the License file
15  * at glassfish/bootstrap/legal/CDDLv1.0.txt.
16  * If applicable, add the following below the CDDL Header,
17  * with the fields enclosed by brackets [] replaced by
18  * you own identifying information:
19  * "Portions Copyrighted [year] [name of copyright owner]"
20  *
21  * Copyright 2006 Sun Microsystems, Inc. All rights reserved.
22  */

23
24 /*
25  * $Id: MBeanMetaException.java,v 1.3 2005/12/25 03:47:36 tcfujii Exp $
26  * @author: alexkrav
27  *
28  * $Log: MBeanMetaException.java,v $
29  * Revision 1.3 2005/12/25 03:47:36 tcfujii
30  * Updated copyright text and year.
31  *
32  * Revision 1.2 2005/06/27 21:19:43 tcfujii
33  * Issue number: CDDL header updates.
34  *
35  * Revision 1.1.1.1 2005/05/27 22:52:02 dpatil
36  * GlassFish first drop
37  *
38  * Revision 1.6 2004/11/14 07:04:20 tcfujii
39  * Updated copyright text and/or year.
40  *
41  * Revision 1.5 2004/02/20 03:56:14 qouyang
42  *
43  *
44  * First pass at code merge.
45  *
46  * Details for the merge will be published at:
47  * http://javaweb.sfbay.sun.com/~qouyang/workspace/PE8FCSMerge/02202004/
48  *
49  * Revision 1.4 2003/11/20 22:41:27 sridatta
50  * implemented registration of all config mbeans. see javadoc for more details.
51  *
52  * Revision 1.3.4.1 2004/02/02 07:25:18 tcfujii
53  * Copyright updates notices; reviewer: Tony Ng
54  *
55  * Revision 1.3 2003/06/25 20:03:40 kravtch
56  * 1. java file headers modified
57  * 2. properties handling api is added
58  * 3. fixed bug for xpathes containing special symbols;
59  * 4. new testcases added for jdbc-resource
60  * 5. introspector modified by not including base classes operations;
61  *
62  *
63 */

64
65 package com.sun.enterprise.admin.meta;
66
67 public class MBeanMetaException extends Exception JavaDoc
68 {
69     /**
70         Creates new <code>MBeanMetaException</code> without detail message.
71     */

72     
73     public MBeanMetaException()
74     {
75         super();
76     }
77
78
79     /**
80         Constructs an <code>MBeanMetaException</code> with the specified detail message.
81         @param msg the detail message.
82     */

83     public MBeanMetaException(String JavaDoc msg)
84     {
85         super(msg);
86     }
87     
88    /**
89     * Constructs an <code>MBeanMetaException</code> with the specified
90     * detail message and a chained exception.
91     * @param msg the detail message.
92     * @param ex chained exception
93     */

94     public MBeanMetaException(String JavaDoc msg, Exception JavaDoc ex)
95     {
96         super(msg, ex);
97     }
98 }
99
Popular Tags