Fix a typo in an exception message

This commit is contained in:
Joerg Schoenfisch 2013-01-18 12:51:57 +01:00
parent fddd972465
commit a2d95df6d4

View File

@ -66,7 +66,7 @@ class CombinedCondition extends AbstractCondition {
}
for (Condition condition : conditions) {
if (condition == null) {
throw new IllegalArgumentException("The argument 'conditions' must contain null");
throw new IllegalArgumentException("The argument 'conditions' must not contain null");
}
}