Class IndexException

java.lang.Object
java.lang.Throwable
java.lang.Exception
org.owasp.dependencycheck.data.cpe.IndexException
All Implemented Interfaces:
Serializable

@ThreadSafe public class IndexException extends Exception
An exception thrown when the there is an issue using the in-memory CPE Index.
Author:
Jeremy Long
See Also:
  • Constructor Details

    • IndexException

      public IndexException()
      Creates a new IndexException.
    • IndexException

      public IndexException(String msg)
      Creates a new IndexException.
      Parameters:
      msg - a message for the exception.
    • IndexException

      public IndexException(Throwable ex)
      Creates a new IndexException.
      Parameters:
      ex - the cause of the failure.
    • IndexException

      public IndexException(String msg, Throwable ex)
      Creates a new IndexException.
      Parameters:
      msg - a message for the exception.
      ex - the cause of the failure.