[#6465] Add no-args constructor to some exceptions
This commit is contained in:
parent
19b9c082ce
commit
f11efe02b4
@ -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.
|
||||
*
|
||||
|
||||
@ -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.
|
||||
*
|
||||
|
||||
Loading…
Reference in New Issue
Block a user