1 25 26 package org.snipsnap.util.log; 27 28 import org.radeox.util.logging.Logger; 29 30 import java.sql.SQLException ; 31 32 38 39 public class SQLLogger extends Logger { 40 public static void warn(String output, SQLException e) { 41 System.err.println(output); 42 while (null != e) { 43 System.err.println(" "+e.getErrorCode()+" "+e.getSQLState()); 44 e = e.getNextException(); 45 } 46 } 47 } 48 | Popular Tags |