在catch块中throw new Exception的意义

throw new Exception(String, Exception)

throw new Exception(String)
throw
是明确地抛出异常
throw new Exception("自定义抛出错误的原因").

public doube Division(double a,double b)
{
  if(b==0)
   {
     throw new Exception("除数不能为0");
   }
 return a/b;
}

posted on 2011-08-09 11:24  路人  阅读(500)  评论(0编辑  收藏  举报

导航