Use is subject to License Terms. Your use of this web site or any of its contents or software indicates your agreement to be bound by these License Terms.

Copyright © 2006 Sun Microsystems, Inc. All rights reserved.

JSR 177

java.rmi
Class RemoteException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by java.io.IOException
              extended by java.rmi.RemoteException
All Implemented Interfaces:
java.io.Serializable

public class RemoteException
extends java.io.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:
JDK1.1
Version:
1.21, 02/21/02
Author:
Ann Wollrath
See Also:
Serialized Form

Field Summary
 java.lang.Throwable detail
          Nested exception to hold wrapped remote exception.
 
Constructor Summary
RemoteException()
          Constructs a RemoteException with no specified detail message.
RemoteException(java.lang.String s)
          Constructs a RemoteException with the specified detail message.
RemoteException(java.lang.String s, java.lang.Throwable ex)
          Constructs a RemoteException with the specified detail message and nested exception.
 
Method Summary
 java.lang.String getMessage()
          Returns the detail message, including the message from the nested exception if there is one.
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

detail

public java.lang.Throwable detail
Nested exception to hold wrapped remote exception.

Since:
JDK1.1
Constructor Detail

RemoteException

public RemoteException()
Constructs a RemoteException with no specified detail message.

Since:
JDK1.1

RemoteException

public RemoteException(java.lang.String s)
Constructs a RemoteException with the specified detail message.

Parameters:
s - the detail message
Since:
JDK1.1

RemoteException

public RemoteException(java.lang.String s,
                       java.lang.Throwable ex)
Constructs a RemoteException with the specified detail message and nested exception.

Parameters:
s - the detail message
ex - the nested exception
Since:
JDK1.1
Method Detail

getMessage

public java.lang.String getMessage()
Returns the detail message, including the message from the nested exception if there is one.

Overrides:
getMessage in class java.lang.Throwable
Returns:
the message saved when the exception was constructed
Since:
JDK1.1

JSR 177

Copyright © 2006 Sun Microsystems, Inc. All rights reserved. Use is subject to License Terms. Your use of this web site or any of its content or software indicates your agreement to be bound by these License Terms.

For more information, please consult the JSR 177 specification.