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

BadStringOperationException

public class BadStringOperationException extends Exception
Thrown when an invalid string operation is passed to a method for constructing a query.
since
1.5

Fields Summary
private static final long
serialVersionUID
private String
op
Constructors Summary
public BadStringOperationException(String message)
Constructs a BadStringOperationException with the specified detail message.

param
message the detail message.


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

 
	return "BadStringOperationException: " + op;