Signed-off-by:Roland Häder <roland@mxchange.org>
matches = (criteraMatches.size() == 1);
} else if (this.getLogical() == null) {
// Logical instance is null
- throw new NullPointerException("logical is not set, but more than one column shall be matched."); //NOI18N
+ throw new NullPointerException(MessageFormat.format("logical is not set, but more than one column ({0}/{1}) shall be matched.", this.entrySet().size(), criteraMatches.size())); //NOI18N
} else {
// Now for the final test
matches = this.getLogical().matches(this.entrySet(), criteraMatches);