You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
64 lines
1.1 KiB
64 lines
1.1 KiB
/*
|
|
* Copyright (c) 1999, 2008, Oracle and/or its affiliates. All rights reserved.
|
|
* ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*/
|
|
|
|
package javax.management;
|
|
|
|
|
|
/**
|
|
* Runtime exceptions emitted by JMX implementations.
|
|
*
|
|
* @since 1.5
|
|
*/
|
|
public class JMRuntimeException extends RuntimeException {
|
|
|
|
/* Serial version */
|
|
private static final long serialVersionUID = 6573344628407841861L;
|
|
|
|
/**
|
|
* Default constructor.
|
|
*/
|
|
public JMRuntimeException() {
|
|
super();
|
|
}
|
|
|
|
/**
|
|
* Constructor that allows a specific error message to be specified.
|
|
*
|
|
* @param message the detail message.
|
|
*/
|
|
public JMRuntimeException(String message) {
|
|
super(message);
|
|
}
|
|
|
|
/**
|
|
* Constructor with a nested exception. This constructor is
|
|
* package-private because it arrived too late for the JMX 1.2
|
|
* specification. A later version may make it public.
|
|
*/
|
|
JMRuntimeException(String message, Throwable cause) {
|
|
super(message, cause);
|
|
}
|
|
}
|