📄 extrace.java
字号:
public class ExTrace{
public void methodA(int money)throws SpecialException{
if(--money<=0) throw new SpecialException("Out of money");
}
public void methodB(int money)throws Exception{
try{
methodA(1);
}catch(SpecialException e){
System.out.println("---Output of methodB()---");
System.out.println(e.getMessage());
throw new Exception("Wrong");
}
}
public static void main(String args[]){
try{
new ExTrace().methodB(1);
}catch(Exception e){
System.out.println("---Output of main()---");
e.printStackTrace();
}
}
}
/****************************************************
* 作者:孙卫琴 *
* 来源:<<Java面向对象编程>> *
* 技术支持网址:www.javathinker.org *
***************************************************/
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -