public class RemoteException
extends java.lang.Exception
Constructor | Description |
---|---|
RemoteException() |
Default constructor.
|
RemoteException(java.lang.String message) |
Overloaded Constructor
|
RemoteException(java.lang.String message,
java.lang.Throwable cause) |
Overloaded Constructor
|
RemoteException(java.lang.Throwable cause) |
Overloaded Constructor
|
public RemoteException(java.lang.Throwable cause)
cause
- the cause (which is saved for later retrieval by the
Throwable.getCause()
method). (A null
value is
permitted, and indicates that the cause is nonexistent or
unknown.)public RemoteException(java.lang.String message, java.lang.Throwable cause)
message
- detail messagecause
- the cause (which is saved for later retrieval by the
Throwable.getCause()
method). (A null
value is
permitted, and indicates that the cause is nonexistent or
unknown.)public RemoteException(java.lang.String message)
message
- detail messagepublic RemoteException()