Example usage for Java java.rmi RemoteException fields, constructors, methods, implement or subclass
The text is from its open source code.
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 . |
Throwable | getCause() Returns the cause of this exception. |
Class> | getClass() Returns the runtime class of this Object . |
String | getLocalizedMessage() Creates a localized description of this throwable. |
String | getMessage() 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() . |
Throwable | initCause(Throwable cause) Initializes the cause of this throwable to the specified value. |
void | printStackTrace() Prints this throwable and its backtrace to the standard error stream. |
String | toString() Returns a short description of this throwable. |