SOLR-5304: Fixed typo in exception message in CurrencyField

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1529405 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Shalin Shekhar Mangar 2013-10-05 08:23:49 +00:00
parent 5f5f7e7756
commit f387bbcf61
1 changed files with 1 additions and 1 deletions

View File

@ -146,7 +146,7 @@ public class CurrencyField extends FieldType implements SchemaAware, ResourceLoa
provider = c.newInstance();
provider.init(args);
} catch (Exception e) {
throw new SolrException(ErrorCode.BAD_REQUEST, "Error instantiating exhange rate provider "+exchangeRateProviderClass+": " + e.getMessage(), e);
throw new SolrException(ErrorCode.BAD_REQUEST, "Error instantiating exchange rate provider "+exchangeRateProviderClass+": " + e.getMessage(), e);
}
}