关键在于你自己怎么用了,
到时你try catch 不同的异常来做不同应对啊,
比如说,我做个异常,用系统的异常类,
但每个类都有自已的名字,你自己Try,catch时要catch这个异常,才知道具体什么问题,进而做什么操作
假如登录时,有两个验证,账号错误,或密码错误,
你可以用系统的throw new Exception("用户名错误")
try{
login(username,password);
}catch(Exception e){
System.out.println(e.getMessage);
doSomeThing.......
}
但是假如说其他问题呢 比如说数据库断了你是不是应该重新登陆试试呢
都在这一个Exception 里,肯定满足不了要求的
try{
login(username,password);
}catch(ErrorUserException e){
System.out.println(e.getMessage);
doSomeThing.......
}catch(SqlErrorException e){
System.out.println(e.getMessage);
doSomeThing.......
}
这样的话逻辑更清晰