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: MBeanRuntimeException.java,v 1.3 2005/12/25 03:47:41 tcfujii Exp $ 26 * @author: alexkrav 27 * 28 * $Log: MBeanRuntimeException.java,v $ 29 * Revision 1.3 2005/12/25 03:47:41 tcfujii 30 * Updated copyright text and year. 31 * 32 * Revision 1.2 2005/06/27 21:19:46 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.3 2004/11/14 07:04:24 tcfujii 39 * Updated copyright text and/or year. 40 * 41 * Revision 1.2 2004/02/20 03:56:18 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.1.4.1 2004/02/02 07:25:22 tcfujii 50 * Copyright updates notices; reviewer: Tony Ng 51 * 52 * Revision 1.1 2003/07/18 20:14:46 kravtch 53 * 1. ALL config mbeans are now covered by descriptors.xml 54 * 2. new infrastructure for runtime mbeans is added 55 * 3. generic constructors added to jsr77Mdl beans (String[]) 56 * 4. new test cases are added to admintest 57 * 5. MBeanRegistryFactory has now different methods to obtain admin/runtime registries 58 * 6. runtime-descriptors xml-file is added to build 59 * 60 * 61 * 62 */ 63 64 package com.sun.enterprise.admin.runtime; 65 66 public class MBeanRuntimeException extends Exception 67 { 68 /** 69 Creates new <code>MBeanRuntimeException</code> without detail message. 70 */ 71 72 public MBeanRuntimeException() 73 { 74 super(); 75 } 76 77 78 /** 79 Constructs an <code>MBeanRuntimeException</code> with the specified detail message. 80 @param msg the detail message. 81 */ 82 public MBeanRuntimeException(String msg) 83 { 84 super(msg); 85 } 86 } 87