01: /* JFox, the OpenSource J2EE Application Server
02: *
03: * Copyright (C) 2002 huihoo.org
04: * Distributable under GNU LGPL license
05: * See the GNU Lesser General Public License for more details.
06: */
07:
08: package javax.management.openmbean;
09:
10: import java.io.Serializable;
11:
12: /**
13: * This runtime exception is thrown to indicate that a method parameter which was expected to be
14: * an item name of a <i>composite data</i> or a row index of a <i>tabular data</i> is not valid.
15: *
16: * @author <a href="mailto:young_yy@hotmail.org">Young Yang</a>
17: */
18:
19: public class InvalidKeyException extends IllegalArgumentException
20: implements Serializable {
21:
22: public InvalidKeyException() {
23:
24: }
25:
26: public InvalidKeyException(String msg) {
27: super(msg);
28: }
29: }
|