1 2 24 25 package com.lutris.util; 26 27 import java.io.PrintStream ; 28 import java.io.PrintWriter ; 29 30 34 public interface ChainedThrowable { 35 39 public String getMessage(); 40 41 45 public Throwable getCause(); 46 47 51 public void printStackTrace(); 52 53 57 public void printStackTrace(PrintStream s); 58 59 63 public void printStackTrace(PrintWriter s); 64 } 65 | Popular Tags |