blob: e77f2838191ec0ded0edc88c64d6e48d2f4c2dc1 (
plain)
1
2
3
4
5
6
7
8
|
public class ExceptionBugTest {
int x;
class MyException extends Exception {}
public void method1() throws Exception { x = 1; } // warning here
public void method2() throws MyException { x = 2; } // warning here
}
|