[#6465] Add no-args constructor to some exceptions

This commit is contained in:
lukaseder 2017-07-27 11:06:03 +02:00
parent 19b9c082ce
commit f11efe02b4
2 changed files with 14 additions and 0 deletions

View File

@ -49,6 +49,13 @@ public class NoDataFoundException extends InvalidResultException {
*/
private static final long serialVersionUID = -6460945824599280420L;
/**
* Constructor for NoDataFoundException.
*/
public NoDataFoundException() {
super(null);
}
/**
* Constructor for NoDataFoundException.
*

View File

@ -58,6 +58,13 @@ public class TooManyRowsException extends InvalidResultException {
*/
private static final long serialVersionUID = -6460945824599280420L;
/**
* Constructor for TooManyRowsException.
*/
public TooManyRowsException() {
super(null);
}
/**
* Constructor for TooManyRowsException.
*