itemPriceDtos.add(mapper.map(itemPriceType, ItemPriceDto.class));
}
return itemPriceDtos;
} catch (ApiParserException e) {
logger.error("Caught ApiParserException", e.getMessage());
throw new EveMetricsApiException(e);
} catch (ApiIoException e) {
logger.error("Caught ApiIoException", e.getMessage());
throw new EveMetricsApiException(e);
}
}