DATACMNS-1392 - Fix typo in Parameters.getParameter(…) exception message.

Original pull request: #311.
This commit is contained in:
Tobias Hermann
2018-09-11 14:29:54 +02:00
committed by Mark Paluch
parent 3ec4fab89b
commit 6297e4b6d1

View File

@@ -217,7 +217,7 @@ public abstract class Parameters<S extends Parameters<S, T>, T extends Parameter
return parameters.get(index);
} catch (IndexOutOfBoundsException e) {
throw new ParameterOutOfBoundsException(
"Invalid parameter index! You seem to have declare too little query method parameters!", e);
"Invalid parameter index! You seem to have declared too little query method parameters!", e);
}
}