1 29 package net.sourceforge.groboutils.util.throwable.v1; 30 31 32 import java.io.PrintStream ; 33 import java.io.PrintWriter ; 34 35 36 44 public interface IChainableException 45 { 46 48 71 public Throwable getCause(); 72 73 74 98 public Throwable initCause( Throwable cause ); 99 100 101 107 public void printStackTrace( PrintStream ps ); 108 109 110 111 117 public void printStackTrace( PrintWriter pw ); 118 } 119 120 | Popular Tags |