Package org.eclipse.net4j.signal
Class RemoteException
- java.lang.Object
- 
- java.lang.Throwable
- 
- java.lang.Exception
- 
- java.lang.RuntimeException
- 
- org.eclipse.net4j.signal.RemoteException
 
 
 
 
- 
- All Implemented Interfaces:
- java.io.Serializable
 
 public class RemoteException extends java.lang.RuntimeExceptionAn exception that wraps an exception that has been thrown during the execution of a remotesignal.- Since:
- 2.0
- Author:
- Eike Stepper
- See Also:
- Serialized Form
 
- 
- 
Constructor SummaryConstructors Constructor Description RemoteException(java.lang.String message, boolean whileResponding)RemoteException(java.lang.Throwable remoteCause, RequestWithConfirmation<?> localRequest, boolean whileResponding)
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description RequestWithConfirmation<?>getLocalRequest()java.lang.StackTraceElement[]getLocalStackTrace()Returns the local stack as it stood at the time that the remote exception was detected locally.voidsetLocalStacktrace(java.lang.StackTraceElement[] stackTrace)booleanwhileResponding()
 
- 
- 
- 
Constructor Detail- 
RemoteExceptionpublic RemoteException(java.lang.Throwable remoteCause, RequestWithConfirmation<?> localRequest, boolean whileResponding)- Since:
- 4.0
 
 - 
RemoteExceptionpublic RemoteException(java.lang.String message, boolean whileResponding)
 
- 
 - 
Method Detail- 
whileRespondingpublic boolean whileResponding() 
 - 
getLocalRequestpublic RequestWithConfirmation<?> getLocalRequest() - Since:
- 4.0
 
 - 
setLocalStacktracepublic void setLocalStacktrace(java.lang.StackTraceElement[] stackTrace) - Since:
- 4.0
 
 - 
getLocalStackTracepublic java.lang.StackTraceElement[] getLocalStackTrace() Returns the local stack as it stood at the time that the remote exception was detected locally. Note that no local problem occurred at the point in the code identified by this stacktrace.- Since:
- 4.0
 
 
- 
 
-