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

BadBinaryOpValueExpException

public class BadBinaryOpValueExpException extends Exception
Thrown when an invalid expression is passed to a method for constructing a query. 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 ValueExp
exp
Constructors Summary
public BadBinaryOpValueExpException(ValueExp exp)
Constructs a BadBinaryOpValueExpException with the specified ValueExp.

param
exp the expression whose value was inappropriate.



                        
        	
	this.exp = exp;
    
Methods Summary
public javax.management.ValueExpgetExp()
Returns the ValueExp that originated the exception.

return
the problematic {@link ValueExp}.

 
	return exp;
    
public java.lang.StringtoString()
Returns the string representing the object.

 
	return "BadBinaryOpValueExpException: " + exp;