I came across this rethrown exception and am surprised that it even compiles.
} catch(SomeException e) {
...
throw(e);
}
Is there any difference between this throw() and what is normally used?...
} catch(SomeException e) {
...
throw e;
}
Any links to where this is documented or guidance on choosing one over the other?