CommunicationExceptionpublic 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. |
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.Throwable | getTargetException()Get the thrown target exception.
return getCause();
|
|