mirror of https://github.com/apache/lucene.git
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:
parent
5f5f7e7756
commit
f387bbcf61
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue