
framework.UncheckedSQLException Maven / Gradle / Ivy
package framework;
import java.sql.SQLException;
/**
* unchecked sql exception
*/
@SuppressWarnings("serial")
public class UncheckedSQLException extends RuntimeException {
/**
* @param e sql exception
*/
public UncheckedSQLException(SQLException e) {
super(e);
}
/**
* @param message message
*/
public UncheckedSQLException(String message) {
super(message);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy