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

JMException

public class JMException extends Exception
Exceptions thrown by JMX implementations. It does not include the runtime exceptions.
since
1.5

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


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

param
msg the detail message.

	super(msg);
    
Methods Summary