KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > javax > management > InvalidAttributeValueException


1 /*
2  * @(#)InvalidAttributeValueException.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  * The value specified is not valid for the attribute.
13  *
14  * @since 1.5
15  */

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

24     public InvalidAttributeValueException() {
25     super();
26     }
27     
28     /**
29      * Constructor that allows a specific error message to be specified.
30      *
31      * @param message the detail message.
32      */

33     public InvalidAttributeValueException(String JavaDoc message) {
34     super(message);
35     }
36 }
37
Popular Tags