We're trying to throw our own custom exception on the server side and handle it on the client to show specific error messages.
Currently all we get is InvocationException & StatusCodeException on the client. Is there a better way to get our own custom exceptions propagated to the client side.
Also, we do not want to declare "throws" declaration in our service interfaces.
Thanks.