A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© lizequn007wo 中级黑马   /  2015-7-27 22:02  /  270 人查看  /  2 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

class FuShuException extends Exception{
private String msq;
FuShuException(String msq){
this.msq=msq;
}
public String getMessage(){
return msq;
}
}
class Demo{
int div(int a,int b)throws FuShuException
{
if(b<0)
throw new FuShuException();
return a/b;
}
}
class Exceptiondemo11{
public static void main(String[]args)
{
Demo d=new Demo();
try{
int x=d.div(4,-1);
System.out.println("x="+x);
}
catch (FuShuException e){
System.out.println(e.toString());

}}}

6001aec27d1ed21b333bbbe4ab6eddc450da3f52.jpg (34.68 KB, 下载次数: 0)

异常

异常

2 个回复

倒序浏览
throw的时候 你的自定义异常构造函数  是有参数的  要传递一个参数
回复 使用道具 举报
FuShuException(String msq){
this.msq=msq;
}你的自定义构造函数有参数。所以新建对象要传参数。
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马