Hi, I would like to know if it is possible to receive customized exception thrown by WCF and catch it. Currently we have a WCF service and we have 2 clients, a Windows client and a Android client. In the WCF service, we throw a FaultException that are caught by our Windows client. On our Android client, we only receive a SoapException with a generic error message. What is the best way to handle customized exception on an Android client?
Thanks.