Throwing UnknownTribbleType exception instead of CommandLineException when an unknown tribble type is specified.
This commit is contained in:
parent
734bb5366b
commit
1ce0b9d519
|
|
@ -345,7 +345,8 @@ public abstract class ArgumentTypeDescriptor {
|
||||||
|
|
||||||
FeatureManager manager = new FeatureManager();
|
FeatureManager manager = new FeatureManager();
|
||||||
if ( manager.getByName(tribbleType) == null )
|
if ( manager.getByName(tribbleType) == null )
|
||||||
throw new UserException.CommandLineException(
|
throw new UserException.UnknownTribbleType(
|
||||||
|
tribbleType,
|
||||||
String.format("Unable to find tribble type '%s' provided on the command line. " +
|
String.format("Unable to find tribble type '%s' provided on the command line. " +
|
||||||
"Please select a correct type from among the supported types:%n%s",
|
"Please select a correct type from among the supported types:%n%s",
|
||||||
tribbleType, manager.userFriendlyListOfAvailableFeatures(parameterType)));
|
tribbleType, manager.userFriendlyListOfAvailableFeatures(parameterType)));
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue