what is the difference between
try { ... }
catch{ throw }
and
try{ ... }
catch(Exception e) {throw new Exception(e.message) }
Regardless that the second shows a message ?
|
what is the difference between
and
Regardless that the second shows a message ? |
|||||||
|
|
NEVER write
|
|
"throw new Exception(ex); is even worse.": I disagree on this one. Sometimes you want to change the type of an exception, and then keeping the original exception as inner exception is the best you can do. Though it should be throw new MyCustomException(myMessage, ex); of course. – 0xA3 Jun 8 '10 at 16:36 |
||
|
|||
|
In addition to implementing the standard constructors, one should also make custom exceptions [Serializable()]. – 0xA3 Jun 8 '10 at 16:56 |
||
|
Yo dawg, we herd you like exceptions so we put an exception in yo’ exception so you can catch while you catch. – Darth Continent Oct 14 '11 at 13:48 |
|
You would normally use BlackWasp has a good article sufficiently titled Throwing Exceptions in C#. |
|||
|
|
|
Using |
|||
|
|
|
Throwing a new Exception blows away the current stack trace.
|
|||
|
|
|
The first preserves the original stacktrace:
The second allows you to change the type of the exception and/or the message and other data:
There's also a third way where you pass an inner exception:
I'd recommend using:
|
|||
|
|
|
If you want you can throw a new Exception, with the original one set as an inner exception. |
|||
|
|
|
Your second example will reset the exception's stack trace. The first most accurately preserves the origins of the exception. Also you've unwrapped the original type which is key in knowing what actually went wrong... If the second is required for functionality - e.g. To add extended info or re-wrap with special type such as a custom 'HandleableException' then just be sure that the InnerException property is set too! |
|||||
|
|
Most important difference is that second expression erases type of exception. And exception type plays vital role in catching exceptions:
If |
|||
|
|
|
One other point that I didn't see anyone make: If you don't do anything in your catch {} block, having a try...catch is pointless. I see this all the time:
Or worse:
Worst yet:
|
|||
|
|