minor: fixed wrong variable usage in AbstractOptionCheck

This commit is contained in:
rnveach 2015-11-11 10:09:02 -05:00
parent b1f81810e7
commit fb2ec00cc7
1 changed files with 1 additions and 1 deletions

View File

@ -68,7 +68,7 @@ public abstract class AbstractOptionCheck<T extends Enum<T>>
Enum.valueOf(optionClass, optionStr.trim().toUpperCase(Locale.ENGLISH));
}
catch (IllegalArgumentException iae) {
throw new ConversionException("unable to parse " + abstractOption, iae);
throw new ConversionException("unable to parse " + optionStr, iae);
}
}