I have a asp.NET web service (not WCF but the classic .asmx one with WebMethods) that throws exceptions. The exceptions all derive from one of two base exception classes (both of which derive from Exception):
public class InputException : Exception
{
....
}
public class FatalException : Exception
{
....
}
public class NoFilesFound: FatalException
{
....
}
....
The webservice right now throws the exception as needed. In my client code I can catch the exceptions and see the message like this:
Server was unable to process request. ---> There were no files found
However the exception is of type FaultException (as seen when I do .GetType() on the caught exception). The calling client needs to be able to differentiate between an InputException and a FatalException (and optimally differentiate between the individual derived ones but that's not as important). Right now the only way to do so is to parse the message, strip the text before "--->" and switch on the text. That is clearly not optimal.
I know I can throw SoapExceptions with custom Code but I want to avoid that if possible. Furthermore it seems designed for those who deal with XML but all of our webservice code doesn't touch XML as it's deserialized for us already.
So in short, is there a way for me to throw custom exceptions from the webservice and for the calling client to be able to differentiate between the exceptions?