Skip to content

Instantly share code, notes, and snippets.

@mastersobg
Created September 15, 2012 20:21
Show Gist options
  • Select an option

  • Save mastersobg/3729583 to your computer and use it in GitHub Desktop.

Select an option

Save mastersobg/3729583 to your computer and use it in GitHub Desktop.
import java.io.*;
public class Test {
void run() throws IOException {
try {
try {
throw new IOException();
}
catch(IOException e) {
throw new IOException();
}
}
finally {
System.err.println("Finally");
}
}
public static void main(String []args) throws IOException {
new Test().run();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment