initCause()这个方法就是对异常来进行包装的,目的就是为了出了问题的时候能够追根究底。
class A{ try{ ... }catch(AException a){ BException b = new BEexception(); b.initCause(a); throw b; } } ... class B{ try{ ... }catch(BException b){ //什么导致了b呢? **b.getCause();//得到导致B异常的原始异常** } }
initCause()这个方法就是对异常来进行包装的,目的就是为了出了问题的时候能够追根究底。
class A{ try{ ... }catch(AException a){ BException b = new BEexception(); b.initCause(a); throw b; } } ... class B{ try{ ... }catch(BException b){ //什么导致了b呢? **b.getCause();//得到导致B异常的原始异常** } }
相关课程