FileDocCategorySizeDatePackage
CommunicationException.javaAPI DocJava SE 5 API1579Fri Aug 26 14:55:06 BST 2005com.sun.jmx.snmp.daemon

CommunicationException

public class CommunicationException extends JMRuntimeException
Represents exceptions raised due to communications problems, for example when a managed object server is out of reach.

This API is a Sun Microsystems internal API and is subject to change without notice.

version
1.19 12/19/03
author
Sun Microsystems, Inc

Fields Summary
private static final long
serialVersionUID
Constructors Summary
public CommunicationException(Throwable target)
Constructs a CommunicationException with a target exception.


                
       
	super(target.getMessage());
	initCause(target);
    
public CommunicationException(Throwable target, String msg)
Constructs a CommunicationException with a target exception and a detail message.

	super(msg);
	initCause(target);
    
public CommunicationException(String msg)
Constructs a CommunicationException with a detail message.

	super(msg);
    
Methods Summary
public java.lang.ThrowablegetTargetException()
Get the thrown target exception.

	return getCause();