Exception handling best practices
Posted
by Costa
on Stack Overflow
See other posts from Stack Overflow
or by Costa
Published on 2010-04-22T09:51:51Z
Indexed on
2010/04/22
9:53 UTC
Read the original article
Hit count: 304
exception-handling
|ASP.NET
Hi
Is there any performance problem or something else about letting the exception to propagate, or it is better to write it like this
try {
} catch { throw; }
© Stack Overflow or respective owner