mirror of https://github.com/apache/lucene.git
SOLR-10011: Fix exception log message
This commit is contained in:
parent
285a1013ad
commit
0f7990b2c8
|
@ -79,7 +79,7 @@ public abstract class NumericFieldType extends PrimitiveFieldType {
|
||||||
max == null ? null : DateMathParser.parseMath(null, max).getTime(),
|
max == null ? null : DateMathParser.parseMath(null, max).getTime(),
|
||||||
minInclusive, maxInclusive);
|
minInclusive, maxInclusive);
|
||||||
default:
|
default:
|
||||||
throw new SolrException(SolrException.ErrorCode.SERVER_ERROR, "Unknown type for point field");
|
throw new SolrException(SolrException.ErrorCode.SERVER_ERROR, "Unknown type for numeric field");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue