należy zawinąć cały mój kod usługi WCF w bloku try catch?

<code>try
{
    ///// here is the code that might throw erros. If I discover the user is unauthorized I throw a WebFaultException myself to alert the client
}      
catch (WebFaultException ex)
{
    throw ex; //but if I wrap all code in try-catch, I have to rethrow the exception o the status code reaches the client
}
catch (Exception ex)
{
    throw new WebFaultException(ex.Message, HttpStatusCode.InternalServerError);
}
</code>

Czy powinienem zawinąć wszystko w try-catch lub co polecasz? Używam WCF z pełnymi usługami JSON

questionAnswers(1)

yourAnswerToTheQuestion