写出下列的运行结果: public class Test2 { public static void main(String[] args) { int x=3,y=2; try{ y=x/y; }catch(ArithmeticException e1){ System.out.println("e1"); }catch(Exception e2){ System.out.println("e2"); }finally{ System.out.println("finally"); } } }