码迷,mamicode.com
首页 > 其他好文 > 详细

异常处理

时间:2017-06-20 20:12:42      阅读:113      评论:0      收藏:0      [点我收藏+]

标签:main   stat   int   out   异常处理   statement   []   void   throws   

异常处理

代码如下:

package day09;

public class TestException {
public static void main(String[] args) throws Exception {
try {
method1();
System.out.println("statement1");
} catch (MyException1 e1) {
System.out.println("process ex1");
}
System.out.println("statement2");
}


private static void method1() throws Exception {
try {
method2();
System.out.println("statement3");
} catch (MyException2 e2) {
System.out.println("process ex2");
}
System.out.println("statement4");
}


private static void method2() throws Exception {
try {
method3();
System.out.println("statement5");
} catch (MyException3 e3) {
System.out.println("process ex3");
}
System.out.println("statement6");
}


private static void method3() throws Exception {
throw new MyException2();
}
}

 

异常处理

标签:main   stat   int   out   异常处理   statement   []   void   throws   

原文地址:http://www.cnblogs.com/F001li/p/7055985.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!