KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > javax > management > MalformedObjectNameException


1 /*
2  * @(#)MalformedObjectNameException.java 4.17 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
9 package javax.management;
10
11
12 /**
13  * The format of the string does not correspond to a valid ObjectName.
14  *
15  * @since 1.5
16  */

17 public class MalformedObjectNameException extends OperationsException JavaDoc {
18
19     /* Serial version */
20     private static final long serialVersionUID = -572689714442915824L;
21
22     /**
23      * Default constructor.
24      */

25     public MalformedObjectNameException() {
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 MalformedObjectNameException(String JavaDoc message) {
35     super(message);
36     }
37 }
38
39
40
41
Popular Tags