0

убран лишний код

This commit is contained in:
2021-01-03 16:09:24 +03:00
parent f821691308
commit 3037aed8ef
3 changed files with 0 additions and 25 deletions

View File

@@ -8,15 +8,6 @@ public class DataAccessException extends RuntimeException {
private String sql;
public DataAccessException(String msg) {
super(msg);
}
public DataAccessException(String msg, String sql) {
this(msg);
this.sql = sql;
}
public DataAccessException(String msg, Throwable cause) {
super(msg, cause);
}

View File

@@ -1,8 +0,0 @@
package ghast.database;
public class EmptyResultDataAccessException extends IncorrectResultSizeDataAccessException {
public EmptyResultDataAccessException(int expectedSize) {
super(expectedSize);
}
}

View File

@@ -1,8 +0,0 @@
package ghast.database;
public class IncorrectResultSizeDataAccessException extends DataAccessException {
public IncorrectResultSizeDataAccessException(int expectedSize) {
super("Incorrect result size: expected " + expectedSize);
}
}