void display(int x) throws Exception{
if(x>25 || x<=0){
throw new Exception("非本班学生!");
}else{
System.out.println("是本班学生!");
}
}
}
class Test{
public static void main(String[] args){
StuId p=new StuId();
try{
try{
p.display(10.2);
}catch(IllegalArgumentException e){
e.printStackTrace();
}
}catch(Exception e){
e.printStackTrace();
}
}
}
有个错误,本人是在不知怎么改了,请高手指点,谢谢