java.rmi

Class RemoteException

public class RemoteException extends IOException

The superclass of exceptions related to RMI (remote method invocation). Classes that implement java.rmi.Remote should list this exception in their throws clause.

Since: 1.1

UNKNOWN: updated to 1.4

Field Summary
Throwabledetail
The cause of this exception.
Constructor Summary
RemoteException()
Create an exception with no message, and cause initialized to null.
RemoteException(String s)
Create an exception with the given message, and cause initialized to null.
RemoteException(String s, Throwable e)
Create an exception with the given message and cause.
Method Summary
ThrowablegetCause()
Returns the cause of this exception.
StringgetMessage()
This method returns a message indicating what went wrong, in this format: super.getMessage() + (detail == null ?

Field Detail

detail

public Throwable detail
The cause of this exception. This pre-dates the exception chaining of Throwable; and although you can change this field, you are wiser to leave it alone.

Serial: the exception cause

Constructor Detail

RemoteException

public RemoteException()
Create an exception with no message, and cause initialized to null.

RemoteException

public RemoteException(String s)
Create an exception with the given message, and cause initialized to null.

Parameters: s the message

RemoteException

public RemoteException(String s, Throwable e)
Create an exception with the given message and cause.

Parameters: s the message e the cause

Method Detail

getCause

public Throwable getCause()
Returns the cause of this exception. Note that this may not be the original cause, thanks to the detail field being public and non-final (yuck). However, to avoid violating the contract of Throwable.getCause(), this returns null if detail == this, as no exception can be its own cause.

Returns: the cause

Since: 1.4

getMessage

public String getMessage()
This method returns a message indicating what went wrong, in this format: super.getMessage() + (detail == null ? "" : "; nested exception is:\n\t" + detail).

Returns: the chained message