Class RemotingException
java.lang.Object
java.lang.Throwable
java.lang.Exception
com.lightstreamer.adapters.remote.RemotingException
- All Implemented Interfaces:
Serializable
Issued by the Remote Server upon an unexpected error.
It is used both synchronously (thrown, for instance,
upon
Server.start()
)
and asynchronously (through an invocation
of ExceptionHandler.handleException(com.lightstreamer.adapters.remote.RemotingException)
).- See Also:
-
Constructor Summary
ConstructorDescriptionRemotingException
(String msg) Used by the Remote Server to construct a RemotingException with a supplied error message text.RemotingException
(String msg, Exception e) Used by the Remote Server to construct a RemotingException with a supplied error message text and cause exception. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
RemotingException
Used by the Remote Server to construct a RemotingException with a supplied error message text.- Parameters:
msg
- The detail message.
-
RemotingException
Used by the Remote Server to construct a RemotingException with a supplied error message text and cause exception.- Parameters:
msg
- The detail message.e
- The cause.
-