If I have a exception code like
catch
{
throw;
}
Does it make any sense? If suppose I dont write this code in function will the exceptions be treated similar in function or there is any difference?
|
If I have a exception code like
Does it make any sense? If suppose I dont write this code in function will the exceptions be treated similar in function or there is any difference? |
|||
|
|
|
No, doesn't make sense as it is not handling the exception, but is just re-throwing |
|||
|
|
|
The code itself does nothing, but that doesn't mean it's worthless. Think of it as a stub. I have let code like this go into production, and every time what it means is that I had trouble there at some point, and during development I had additional code that I used for debugging that was later removed... something like an extra log message, MessageBox, or trace call, or even just a no-op kind of line ( I like to leave the stub behind as a reminder that this section might be more difficult than it appears. Looking at any random bit of code, though, a lot of the time this code exists because someone who didn't know any better just thought there should be a try/catch block there. |
|||
|
|
|
No. It really doesn't make any sense by itself. Without adding some sort of logging or other logic, this would be equivalent to not using a try/catch block at all. |
|||
|
|
|
This is redundant. It will catch any exception and then just rethrow it. You're better off not using the |
|||
|
|
|
in that situation the throw is in fact a re-throw and completely pointless if you have no other error handling. |
|||
|
|