java.lang.Object java.lang.Throwable java.lang.Exception java.io.IOException java.rmi.RemoteException
public class RemoteException
A RemoteException
is the common superclass for a number of communication-related exceptions that may occur during the execution of a remote method call. Each method of a remote interface, an interface that extends java.rmi.Remote
, must list RemoteException
in its throws clause.
As of release 1.4, this exception has been retrofitted to conform to the general purpose exception-chaining mechanism. The "wrapped remote exception" that may be provided at construction time and accessed via the public detail
field is now known as the cause, and may be accessed via the Throwable.getCause()
method, as well as the aforementioned "legacy field."
Invoking the method Throwable.initCause(Throwable)
on an instance of RemoteException
always throws IllegalStateException
.
Throwable
getCause()
String
getMessage()
public Throwable detail
This field predates the general-purpose exception chaining facility. The Throwable.getCause()
method is now the preferred means of obtaining this information.
public RemoteException()
RemoteException
.
public RemoteException(String s)
RemoteException
with the specified detail message.
s
- the detail message
public RemoteException(String s, Throwable cause)
RemoteException
with the specified detail message and cause. This constructor sets the detail
field to the specified Throwable
.
s
- the detail message
cause
- the cause
public String getMessage()
getMessage
in class Throwable
public Throwable getCause()
detail
field.
getCause
in class Throwable
Copyright © 2004, 2010 Oracle and/or its affiliates. All rights reserved. Use is subject to license terms. Also see the documentation redistribution policy.
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4