use of picocli.CommandLine.TypeConversionException in project Valkyrien-Warfare-Revamped by ValkyrienWarfare.
the class ShipDataConverter method convert.
@Override
public ShipData convert(String value) throws TypeConversionException {
World world = sender.getEntityWorld();
QueryableShipData data = QueryableShipData.get(world);
return data.getShipFromName(value).orElseThrow(() -> new TypeConversionException("That ship, " + value + ", could not be found"));
}
Aggregations