Skip to content
Snippets Groups Projects
Commit 096ea28a authored by brinn's avatar brinn
Browse files

Detect service execution exceptions in client also during send.

SVN: 24048
parent 9bec39f3
No related branches found
No related tags found
No related merge requests found
......@@ -39,8 +39,10 @@ public interface IServiceMessenger
*
* @param message The message to send.
* @throws InterruptedExceptionUnchecked If the client signaled termination (server-side only).
* @throws ServiceExecutionException If the server signaled an exception (client-side only).
*/
public void send(Serializable message) throws InterruptedExceptionUnchecked;
public void send(Serializable message) throws InterruptedExceptionUnchecked,
ServiceExecutionException;
/**
* Receive a message from the counter part.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment