42434445464748
throw new Exception1(); } public void method4(int param1) throws Exception1, Exception2, Exception3, Exception4 { throw new Exception3(); }
31323334353637
public String method2(String param1) throws Exception2, Exception1 { throw new Exception2("Test Exception2"); } public int method3(int param1) throws Exception3, Exception2, Exception1 { throw new Exception3("Test Exception3"); }