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 the index of a row to be added to a <i>tabular data</i> instance
14: * is already used to refer to another row in this <i>tabular data</i> instance.
15: *
16: * @author <a href="mailto:young_yy@hotmail.org">Young Yang</a>
17: */
18:
19: public class KeyAlreadyExistsException extends IllegalArgumentException
20: implements Serializable {
21:
22: public KeyAlreadyExistsException() {
23: }
24:
25: public KeyAlreadyExistsException(String msg) {
26: super(msg);
27: }
28: }
|