()
| 9 | public static Exception anException = new IOException(); |
| 10 | |
| 11 | public static void staticThrowsException() throws Exception { |
| 12 | throw new Exception(); |
| 13 | } |
| 14 | |
| 15 | public static void staticThrowsIOException() throws IOException { |
| 16 | throw new IOException(); |