Searched refs:RuntimeMBeanException (Results 1 - 10 of 10) sorted by relevance

/openjdk7/jdk/src/share/classes/javax/management/
H A DRuntimeMBeanException.java37 public class RuntimeMBeanException extends JMRuntimeException { class in inherits:JMRuntimeException
49 * Creates a <CODE>RuntimeMBeanException</CODE> that wraps the actual <CODE>java.lang.RuntimeException</CODE>.
53 public RuntimeMBeanException(java.lang.RuntimeException e) { method in class:RuntimeMBeanException
59 * Creates a <CODE>RuntimeMBeanException</CODE> that wraps the actual <CODE>java.lang.RuntimeException</CODE> with
65 public RuntimeMBeanException(java.lang.RuntimeException e, String message) { method in class:RuntimeMBeanException
H A DMBeanServerInvocationHandler.java297 } catch (RuntimeMBeanException re) {
/openjdk7/jdk/test/java/lang/management/ManagementFactory/
H A DMXBeanException.java27 * @summary Check if a RuntimeException is wrapped by RuntimeMBeanException
71 } catch (RuntimeMBeanException e) {
/openjdk7/jdk/test/javax/management/MBeanServer/
H A DMBeanExceptionTest.java28 * RuntimeMBeanException and (for Standard MBeans) that checked exceptions
45 import javax.management.RuntimeMBeanException;
51 "it is wrapped in RuntimeMBeanException,");
75 runtimeX ? RuntimeMBeanException.class : MBeanException.class;
77 runtimeX ? "a RuntimeMBeanException" : "an MBeanException";
157 } catch (RuntimeMBeanException e) {
159 System.out.println("failure: RuntimeMBeanException " +
213 throw new RuntimeMBeanException(new RuntimeException(), "Bang");
H A DPostExceptionTest.java302 if (!(thrown instanceof RuntimeMBeanException)) {
303 System.out.println("Expected RuntimeMBeanException, got "+
305 throw new Exception("Expected RuntimeMBeanException, got "+
317 if (!(thrown instanceof RuntimeMBeanException)) {
318 System.out.println("Expected RuntimeMBeanException, got "+
320 throw new Exception("Expected RuntimeMBeanException, got "+
H A DOldMBeanServerTest.java86 import javax.management.RuntimeMBeanException;
1351 throw new RuntimeMBeanException(x);
/openjdk7/jdk/src/share/classes/com/sun/jmx/mbeanserver/
H A DMBeanInstantiator.java53 import javax.management.RuntimeMBeanException;
237 throw new RuntimeMBeanException((RuntimeException)t,
327 throw new RuntimeMBeanException((RuntimeException)th,
/openjdk7/jdk/src/share/classes/javax/management/remote/rmi/
H A DRMIConnection.java50 import javax.management.RuntimeMBeanException;
539 * @throws RuntimeMBeanException Wraps a runtime exception thrown
/openjdk7/jdk/src/share/classes/com/sun/jmx/interceptor/
H A DDefaultMBeanServerInterceptor.java88 import javax.management.RuntimeMBeanException;
839 throw new RuntimeMBeanException(e, e.toString());
985 throw new RuntimeMBeanException((RuntimeException)t,
1029 throw new RuntimeMBeanException(e,
1060 throw new RuntimeMBeanException(e,
1379 } catch (RuntimeMBeanException e) {
1384 throw new RuntimeMBeanException(e,
/openjdk7/jdk/src/share/classes/sun/tools/jconsole/inspector/
H A DUtils.java396 e instanceof RuntimeMBeanException ||

Completed in 64 milliseconds