FileDocCategorySizeDatePackage
JMXProviderException.javaAPI DocJava SE 5 API1643Fri Aug 26 14:57:38 BST 2005javax.management.remote

JMXProviderException

public class JMXProviderException extends IOException

Exception thrown by {@link JMXConnectorFactory} when a provider exists for the required protocol but cannot be used for some reason.

see
JMXConnectorFactory#connect(JMXServiceURL, Map)
since
1.5
since.unbundled
1.0

Fields Summary
private static final long
serialVersionUID
private Throwable
cause
Constructors Summary
public JMXProviderException()

Constructs a JMXProviderException with no specified detail message.


                 
      
    
public JMXProviderException(String message)

Constructs a JMXProviderException with the specified detail message.

param
message the detail message

	super(message);
    
public JMXProviderException(String message, Throwable cause)

Constructs a JMXProviderException with the specified detail message and nested exception.

param
message the detail message
param
cause the nested exception

	super(message);
	this.cause = cause;
    
Methods Summary
public java.lang.ThrowablegetCause()

	return cause;