Skip to content

Commit

Permalink
Merge pull request #420 from sernamar/typo-IMFRateProvider
Browse files Browse the repository at this point in the history
Fix typo in exception message for IMFRateProvider
  • Loading branch information
keilw authored Sep 7, 2024
2 parents ab97483 + d31445c commit 980334e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ private ExchangeRate getExchangeRate(List<ExchangeRate> rates,final LocalDate[]
}
}
final String datesOnErrors = Stream.of(dates).map(date -> date.format(DateTimeFormatter.ISO_LOCAL_DATE)).collect(Collectors.joining(","));
throw new MonetaryException("There is not exchange on day " + datesOnErrors + " to rate to rate on IFMRateProvider.");
throw new MonetaryException("There is not exchange on day " + datesOnErrors + " to rate to rate on IMFRateProvider.");
}
}

Expand Down

0 comments on commit 980334e

Please sign in to comment.