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