1 3 package jodd.db; 4 5 import jodd.util.UncheckedException; 6 7 10 public class DbSqlException extends UncheckedException { 11 12 public DbSqlException(Throwable t) { 13 super(t); 14 } 15 16 public DbSqlException() { 17 } 18 19 public DbSqlException(String message) { 20 super(message); 21 } 22 23 public DbSqlException(String message, Throwable t) { 24 super(message, t); 25 } 26 } 27 | Popular Tags |