class Demo
{
int div(int a,int b)throws FuShuException//在功能上通过throws的关键字声明了该功能有可能会出现问题。
{
if(b<0)
throw new FuShuException("出现了除数是负数的情况");//手动让throw关键字抛出对象。
return a/b;
}
}
class ExceptionDemo3
{
public static void main(String[] args)
{
Demo d=new Demo();
try
{
int x=d.div(4,-2);
System.out.println("x="+x);
}
catch (FuShuException e)
{
System.out.println(e.toString());
System.out.println("除数为负数啦!!!");
}