FileDocCategorySizeDatePackage
OperationsException.javaAPI DocJava SE 5 API808Fri Aug 26 14:57:34 BST 2005javax.management

OperationsException

public class OperationsException extends JMException
Represents exceptions thrown in the MBean server when performing operations on MBeans.
since
1.5

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


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

param
message the detail message.

	super(message);
    
Methods Summary