FileDocCategorySizeDatePackage
BadAttributeValueExpException.javaAPI DocJava SE 5 API1128Fri Aug 26 14:57:32 BST 2005javax.management

BadAttributeValueExpException

public class BadAttributeValueExpException extends Exception
Thrown when an invalid MBean attribute is passed to a query constructing method. This exception is used internally by JMX during the evaluation of a query. User code does not usually see it.
since
1.5

Fields Summary
private static final long
serialVersionUID
private Object
val
Constructors Summary
public BadAttributeValueExpException(Object val)
Constructs an BadAttributeValueExpException with the specified Object.

param
val the inappropriate value.


                     
         
	this.val = val;
    
Methods Summary
public java.lang.StringtoString()
Returns the string representing the object.

 
	return "BadAttributeValueException: " + val;