Uploaded image for project: 'Lucene - Core'
  1. Lucene - Core
  2. LUCENE-6961

Improve Exception handling in AnalysisFactory/SPI loader

Details

    • Improvement
    • Status: Closed
    • Major
    • Resolution: Fixed
    • 5.4
    • 5.5, 6.0
    • modules/analysis
    • 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

        1. LUCENE-6961.patch
          4 kB
          Uwe Schindler

        Issue Links

          Activity

            People

              uschindler Uwe Schindler
              uschindler Uwe Schindler
              Votes:
              0 Vote for this issue
              Watchers:
              1 Start watching this issue

              Dates

                Created:
                Updated:
                Resolved: