01 /*
02 * Copyright 1999-2003 Sun Microsystems, Inc. All Rights Reserved.
03 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
04 *
05 * This code is free software; you can redistribute it and/or modify it
06 * under the terms of the GNU General Public License version 2 only, as
07 * published by the Free Software Foundation. Sun designates this
08 * particular file as subject to the "Classpath" exception as provided
09 * by Sun in the LICENSE file that accompanied this code.
10 *
11 * This code is distributed in the hope that it will be useful, but WITHOUT
12 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14 * version 2 for more details (a copy is included in the LICENSE file that
15 * accompanied this code).
16 *
17 * You should have received a copy of the GNU General Public License version
18 * 2 along with this work; if not, write to the Free Software Foundation,
19 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
20 *
21 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
22 * CA 95054 USA or visit www.sun.com if you need additional information or
23 * have any questions.
24 */
25
26 package javax.management;
27
28 /**
29 * Represents runtime exceptions thrown by MBean methods in
30 * the agent. It "wraps" the actual <CODE>java.lang.RuntimeException</CODE> exception thrown.
31 * This exception will be built by the MBeanServer when a call to an
32 * MBean method throws a runtime exception.
33 *
34 * @since 1.5
35 */
36 public class RuntimeMBeanException extends JMRuntimeException {
37
38 /* Serial version */
39 private static final long serialVersionUID = 5274912751982730171L;
40
41 /**
42 * @serial The encapsulated {@link RuntimeException}
43 */
44 private java.lang.RuntimeException runtimeException;
45
46 /**
47 * Creates a <CODE>RuntimeMBeanException</CODE> that wraps the actual <CODE>java.lang.RuntimeException</CODE>.
48 *
49 * @param e the wrapped exception.
50 */
51 public RuntimeMBeanException(java.lang.RuntimeException e) {
52 super ();
53 runtimeException = e;
54 }
55
56 /**
57 * Creates a <CODE>RuntimeMBeanException</CODE> that wraps the actual <CODE>java.lang.RuntimeException</CODE> with
58 * a detailed message.
59 *
60 * @param e the wrapped exception.
61 * @param message the detail message.
62 */
63 public RuntimeMBeanException(java.lang.RuntimeException e,
64 String message) {
65 super (message);
66 runtimeException = e;
67 }
68
69 /**
70 * Returns the actual {@link RuntimeException} thrown.
71 *
72 * @return the wrapped {@link RuntimeException}.
73 */
74 public java.lang.RuntimeException getTargetException() {
75 return runtimeException;
76 }
77
78 /**
79 * Returns the actual {@link RuntimeException} thrown.
80 *
81 * @return the wrapped {@link RuntimeException}.
82 */
83 public Throwable getCause() {
84 return runtimeException;
85 }
86 }
|