0

gradle: разделение на gradle-module's

This commit is contained in:
2021-01-07 04:47:46 +03:00
parent 9a14817ff8
commit 368c495886
28 changed files with 9 additions and 8 deletions

View File

@@ -0,0 +1,10 @@
package ghast.database;
import java.sql.SQLException;
public class CannotGetJdbcConnectionException extends DataAccessException {
public CannotGetJdbcConnectionException(String msg, SQLException ex) {
super(msg, ex);
}
}