1 23 24 package org.enhydra.error; 25 26 import java.io.PrintStream ; 27 import java.io.PrintWriter ; 28 29 49 public interface ChainedThrowable { 50 54 public String getMessage(); 55 56 59 public String getLocalizedMessage(); 60 61 65 public Throwable getCause(); 66 67 71 public void printStackTrace(); 72 73 77 public void printStackTrace(PrintStream s); 78 79 83 public void printStackTrace(PrintWriter s); 84 } 85 | Popular Tags |