difference between throw and throw new Exception()
Posted
by Strider007
on Stack Overflow
See other posts from Stack Overflow
or by Strider007
Published on 2010-06-08T16:30:51Z
Indexed on
2010/06/08
16:32 UTC
Read the original article
Hit count: 188
c#
what is the difference between
try{..}/catch{ throw } and
try{...}/catch(E){throw new Exception(E.message) }??
regardles that the second shows a message ?
© Stack Overflow or respective owner