Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Im doing this in c#. These are the code layers

VIEW -> VIEWHANDLER -> BusinessLayer -> WCF SERVICE

The view calls the ViewHandler which calls the business layer which calls the service. The service will throw some fault exception. All exceptions are handled in the View handler. The business layer re-throws the fault exception it got from the service as is to be handled in the VIEWHANDLER. What is the best way to rethrow it in the BusinessLayer?

catch(FaultException f)
{
throw f;
}

or

catch(FaultException f)
{
throw;
}

Does "throw f" resets the call stack information held in the caught exception? and does throw send it as-is?

share|improve this question
1  
Yes, and yes. If you do throw f then when the exception is ultimately caught and handled it will have the wrong stack trace attached. – Jon Jun 18 '11 at 11:56

2 Answers

up vote 6 down vote accepted

Yes, throw f; will reset the stack.

throw; will not.

In either case, if this is all you are doing in the catch block, you are better off not using a try-catch block at all as it is pointless.

share|improve this answer

Yes, you should use throw and not throw f. If you don't do anything in the catch statement you can leave out the catch.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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