本帖最后由 于先森 于 2015-4-13 20:40 编辑
这是我写的2个自定义异常
这2个区别是什么?
int numberClass = 55;
if(numberClass>51){
try {
throw new Exception("人数不能大于51");
} catch (Exception e) {
// TODO Auto-generated catch block
e.printStackTrace();
System.out.println(e.getMessage());
}
}
class MyException extends Exception{
public MyException (String s){
super(s);
}
}
|
|