/* * @(#)InvalidKeyException.java 3.17 03/12/19 * * Copyright 2004 Sun Microsystems, Inc. All rights reserved. * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. */ package javax.management.openmbean; // java import // import java.io.Serializable; // jmx import // /** * This runtime exception is thrown to indicate that a method parameter which was expected to be * an item name of a composite data or a row index of a tabular data is not valid. * * @version 3.17 03/12/19 * @author Sun Microsystems, Inc. * * @since 1.5 * @since.unbundled JMX 1.1 */ public class InvalidKeyException extends IllegalArgumentException implements Serializable { private static final long serialVersionUID = 4224269443946322062L; /** * An InvalidKeyException with no detail message. */ public InvalidKeyException() { super(); } /** * An InvalidKeyException with a detail message. * * @param msg the detail message. */ public InvalidKeyException(String msg) { super(msg); } }