0
votes
Why aren’t variables declared in “try” in scope in “catch” or “finally”?
While in your example it is weird that it does not work, take this similar one:
try
{
//Code 1
String s = "1|2";
//Code 2
}
catch
{
…
1
vote
Why Re-throw Exceptions?
Generally the "Do Something" either involves better explaining the exception (For instance, wrapping it in another exception), or tracing information through a certain source.
Another possi …
