minor: fixed wrong variable usage in AbstractOptionCheck
This commit is contained in:
parent
b1f81810e7
commit
fb2ec00cc7
|
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue