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

回避异常的处理方式

时间:2017-04-23 14:25:55      阅读:158      评论:0      收藏:0      [点我收藏+]

标签:exception   div   ring   不能   try   ati   row   oid   throws   

package zuizhong;

public class Test5 {


    public static void main(String[] args) throws Exception  {
    try {
        int s=divide(100, 0);
    } catch (Exception e) {
    throw e;
    }
        
    }
    
public static    int divide(int a,int b) throws Exception{
            if(b==0){
                Exception e=new Exception("除数不能为零");
                throw e;
            }else return a/b;
        }
}

 

回避异常的处理方式

标签:exception   div   ring   不能   try   ati   row   oid   throws   

原文地址:http://www.cnblogs.com/zyy1130/p/6752385.html

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