You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

ExceptionBugTest.java 231B

12345678
  1. public class ExceptionBugTest {
  2. int x;
  3. class MyException extends Exception {}
  4. public void method1() throws Exception { x = 1; } // warning here
  5. public void method2() throws MyException { x = 2; } // warning here
  6. }