com.github.chengyuxing.sql.exceptions.UncheckedSqlException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rabbit-sql Show documentation
Show all versions of rabbit-sql Show documentation
Light wrapper of JDBC, support ddl, dml, query, plsql/procedure/function, transaction and manage sql
file.
package com.github.chengyuxing.sql.exceptions;
import java.sql.SQLException;
public class UncheckedSqlException extends RuntimeException {
public UncheckedSqlException(String message, SQLException cause) {
super(message, cause);
}
public UncheckedSqlException(String message) {
super(message);
}
}