How do I catch FaultException for any Exception derived TDetail?
I tried catch( FaultException<Exception> ) {} but that does not seem to work.

Edit
The purpose is to gain access to the Detail property.

link|improve this question

feedback

1 Answer

up vote 3 down vote accepted

FaultException<> inherits from FaultException. So change your code to:

catch (FaultException fx)  // catches all your fault exceptions
{
    ...
}

=== Edit ===

If you need FaultException<T>.Detail, you've a couple of options but none of them are friendly. The best solution is to catch each individual type you want to catch:

catch (FaultException<Foo> fx) 
{
    ...
}
catch (FaultException<Bar> fx) 
{
    ...
}
catch (FaultException fx)  // catches all your other fault exceptions
{
    ...
}

I advise you do it like that. Otherwise, you're going to dip into reflection.

try
{
    throw new FaultException<int>(5);
}
catch (FaultException ex)
{
    Type exType = ex.GetType();
    if (exType.IsGenericType && exType.GetGenericTypeDefinition().Equals(typeof(FaultException<>)))
    {
        object o = exType.GetProperty("Detail").GetValue(ex, null);
    }
}

Reflection is slow, but since exceptions are supposed to be rare... again, I advise breaking them out as you are able to.

link|improve this answer
but how do I access Detail? =) edited question – SFun28 Jun 7 '11 at 18:09
@SFun28: I updated my answer. – Inuyasha Jun 7 '11 at 20:28
+1 - thanks! I opted for the reflection approach since I had many types of FaultException that could be thrown. – SFun28 Jun 7 '11 at 21:09
@SFun28, awesome. Good luck! – Inuyasha Jun 7 '11 at 21:22
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.