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

MalformedObjectNameException

public class MalformedObjectNameException extends OperationsException
The format of the string does not correspond to a valid ObjectName.
since
1.5

Fields Summary
private static final long
serialVersionUID
Constructors Summary
public MalformedObjectNameException()
Default constructor.


           
      
	super();
    
public MalformedObjectNameException(String message)
Constructor that allows a specific error message to be specified.

param
message the detail message.

	super(message);
    
Methods Summary