Details
-
Improvement
-
Status: Closed
-
Major
-
Resolution: Fixed
-
5.4
-
None
-
New
Description
Currently the AnalysisSPILoader used by AbstractAnalysisFactory uses a catch Exception block when invoking the constructor. If the constructor throws stuff like IllegalArgumentExceptions or similar, this is hidden inside InvocationTargetException, which gets wrapped in IllegalArgumentException. This is not useful.
This patch will:
- Only catch ReflectiveOperationException
- If it is InvocationTargetException it will rethrow the cause, if it is unchecked. Otherwise it will wrap in RuntimeException
- If the constructor cannot be called at all (reflective access denied, method not found,...) UOE is thrown with explaining message.
This patch will be required by next version of LUCENE-6958.
Attachments
Attachments
Issue Links
- is required by
-
LUCENE-6958 Improve CustomAnalyzer to also allow to specify factory directly (for compile-time safety)
- Closed