1 /* 2 * @(#)NotCompliantMBeanException.java 4.16 03/12/19 3 * 4 * Copyright 2004 Sun Microsystems, Inc. All rights reserved. 5 * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 6 */ 7 8 package javax.management; 9 10 11 /** 12 * Exception which occurs when trying to register an object in the MBean server that is not a JMX compliant MBean. 13 * 14 * @since 1.5 15 */ 16 public class NotCompliantMBeanException extends OperationsException { 17 18 19 /* Serial version */ 20 private static final long serialVersionUID = 5175579583207963577L; 21 22 /** 23 * Default constructor. 24 */ 25 public NotCompliantMBeanException() { 26 super(); 27 } 28 29 /** 30 * Constructor that allows a specific error message to be specified. 31 * 32 * @param message the detail message. 33 */ 34 public NotCompliantMBeanException(String message) { 35 super(message); 36 } 37 38 } 39