Class MatchProcessorException

  • All Implemented Interfaces:
    Serializable

    public class MatchProcessorException
    extends RuntimeException
    Thrown if one or more exceptions were thrown when attempting to call the classloader on a class, or if one or more exceptions were thrown by a MatchProcessor. Call getExceptions() to get the exceptions thrown.
    See Also:
    Serialized Form
    • Method Detail

      • getExceptions

        public List<Throwable> getExceptions()
        Get all the exceptions thrown by a MatchProcessor during the scan.
        Returns:
        The list of exceptions.
      • newInstance

        public static MatchProcessorException newInstance​(List<Throwable> exceptions)
        Create a MatchProcessorException
        Parameters:
        exceptions - The list of Throwables (Exceptions or Errors) that were thrown by the MatchProcessor.
        Returns:
        A new MatchProcessorException.
      • newInstance

        public static MatchProcessorException newInstance​(Throwable throwable)
        Create a MatchProcessorException.
        Parameters:
        throwable - The Throwable (Exception or Error) that was thrown.
        Returns:
        a new MatchProcessorException.