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 e24981da2a
commit b7b55dd549

View File

@@ -216,7 +216,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);
}
}