--- org/h2/jdbc/JdbcSQLException.java 2007-12-02 08:20:04.000000000 +0100 +++ org.new/h2/jdbc/JdbcSQLException.java 2008-01-06 16:25:49.000000000 +0100 @@ -58,65 +58,6 @@ } /** - * Prints the stack trace to the standard error stream. - */ - public void printStackTrace() { - super.printStackTrace(); -//#ifdef JDK13 -/* - if (cause != null) { - cause.printStackTrace(); - } -*/ -//#endif - if (getNextException() != null) { - getNextException().printStackTrace(); - } - } - - /** - * Prints the stack trace to the specified print writer. - * - * @param s the print writer - */ - public void printStackTrace(PrintWriter s) { - if (s != null) { - super.printStackTrace(s); -//#ifdef JDK13 -/* - if (cause != null) { - cause.printStackTrace(s); - } -*/ -//#endif - if (getNextException() != null) { - getNextException().printStackTrace(s); - } - } - } - - /** - * Prints the stack trace to the specified print stream. - * - * @param s the print stream - */ - public void printStackTrace(PrintStream s) { - if (s != null) { - super.printStackTrace(s); -//#ifdef JDK13 -/* - if (cause != null) { - cause.printStackTrace(s); - } -*/ -//#endif - if (getNextException() != null) { - getNextException().printStackTrace(s); - } - } - } - - /** * INTERNAL */ public Throwable getOriginalCause() {