Java java.rmi RemoteException fields, constructors, methods, implement or subclass

Example usage for Java java.rmi RemoteException fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for java.rmi RemoteException.

The text is from its open source code.

Subclass

java.rmi.RemoteException has subclasses.
Click this link to see all its subclasses.

Constructor

RemoteException(String s)
Constructs a RemoteException with the specified detail message.
RemoteException(String s, Throwable cause)
Constructs a RemoteException with the specified detail message and cause.
RemoteException()
Constructs a RemoteException .

Method

ThrowablegetCause()
Returns the cause of this exception.
ClassgetClass()
Returns the runtime class of this Object .
StringgetLocalizedMessage()
Creates a localized description of this throwable.
StringgetMessage()
Returns the detail message, including the message from the cause, if any, of this exception.
StackTraceElement[]getStackTrace()
Provides programmatic access to the stack trace information printed by #printStackTrace() .
ThrowableinitCause(Throwable cause)
Initializes the cause of this throwable to the specified value.
voidprintStackTrace()
Prints this throwable and its backtrace to the standard error stream.
StringtoString()
Returns a short description of this throwable.