package uk.ac.lkl.common.util.database; public class DatabaseStatementException extends DatabaseException { public DatabaseStatementException(String message) { super(message); } public DatabaseStatementException(Throwable throwable) { super(throwable); } }