IS there a difference between just saying throw; and throw ex; assuming ex is the exception you're catching?
|
|
|
||||
|
|
|
Here is a simple code snippet that will help illustrate the difference. The difference being that throw ex will reset the stack trace as if the line " Code:
Output (notice the different stack trace):
|
||
|
|
|
|
You have two options throw; or throw the orginal exceptional as an innerexception of a new exception. Depending on what you need/ |
||
|
|
