java.rmi
Class RemoteException
java.lang.Object
|
+--java.lang.Throwable
|
+--java.lang.Exception
|
+--java.io.IOException
|
+--java.rmi.RemoteException
- Direct Known Subclasses:
- MarshalException, ServerException
- public class RemoteException
- extends IOException
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.
- Since:
- JDE 4.2.1
|
Field Summary |
Throwable |
detail
Nested exception to hold wrapped remote exception. |
|
Method Summary |
String |
getMessage()
Returns the detail message, including the message from the nested exception if there is one. |
detail
public Throwable detail
- Nested exception to hold wrapped remote exception.
- Since:
- JDE 4.2.1
RemoteException
public RemoteException()
- Constructs a RemoteException with no specified detail message.
- Since:
- JDE 4.2.1
RemoteException
public RemoteException(String s)
- Constructs a RemoteException with the specified detail message.
- Parameters:
s - the detail message- Since:
- JDE 4.2.1
RemoteException
public RemoteException(String s,
Throwable throwable)
- Constructs a RemoteException with the specified detail message and nested exception.
- Parameters:
s - the detail messagethrowable - the nested exception- Since:
- JDE 4.2.1
getMessage
public String getMessage()
- Returns the detail message, including the message from the nested exception if there is one.
- Overrides:
getMessage in class Throwable
- Returns:
- the message saved when the exception was constructed
- Since:
- JDE 4.2.1
Copyright 1999-2007 Research In Motion Limited. 295 Phillip Street, Waterloo, Ontario, Canada, N2L 3W8. All Rights Reserved.
Copyright 1993-2003 Sun Microsystems, Inc. 901 San Antonio Road, Palo Alto, California, 94303, U.S.A.
Copyright 2002-2003 Nokia Corporation All Rights Reserved.
Java is a trademark or registered trademark of Sun Microsystems, Inc. in the US and other countries.