views:

60

answers:

1

Hi All,

I have ExceptionPolicy, that catching all System.Exceptions. Now I have issue, how can I change that policy, to not catch FaultExceptions?

Thanks

+1  A: 

catch FaultExceptions explicitly and rethrow it if needed.

crauscher