Is there a difference in writing:
throw SomeException;
and
throw(SomeException);
I have seen some sources that claim the latter (with parentheses) is not a good option for some reason but alas I can not recall where I've seen this.
See Question&Answers more detail:os