Class DependencyNotFoundException

java.lang.Object
java.lang.Throwable
java.lang.Exception
org.owasp.dependencycheck.exception.DependencyNotFoundException
All Implemented Interfaces:
Serializable

@ThreadSafe public class DependencyNotFoundException extends Exception
An exception used when a dependency could not be found.
Author:
Jeremy Long
See Also:
  • Constructor Details

    • DependencyNotFoundException

      public DependencyNotFoundException()
      Creates a new DependencyNotFoundException.
    • DependencyNotFoundException

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

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

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