问题描述
- Java如何处理异常有几种方式,如何处理的
-
我是新手,求各位前辈,大牛教下我,万分感谢!希望能给我一些详细解说,在此谢谢了
解决方案
package com.eric.exception;
public class RethrowException {
public static void main(String[] args) {
try {
// g0();
// g1();
// g2();
// g3();
g6();
} catch (Exception e) {......<br/><strong>答案就在这里:</strong><a target='_blank' rel='nofollow' href='http://blog.csdn.net/sun7545526/article/details/7110017'>java中异常处理的几种方式</a><br/>
解决方案二:
第一种:public String list()throw Exception{}
第二种:public String list(){
try{
}
catch(Exception e){
e.printStack();
}
}
第三种:public String list(){
try{
}
catch(Exception e){
throw new AdminContantsException("抛出自定义异常",e)
}
}
时间: 2024-09-12 21:47:07