Class DependencyNotFoundException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.owasp.dependencycheck.exception.DependencyNotFoundException
-
- All Implemented Interfaces:
java.io.Serializable
@ThreadSafe public class DependencyNotFoundException extends java.lang.Exception
An exception used when a dependency could not be found.- Author:
- Jeremy Long
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description DependencyNotFoundException()
Creates a new DependencyNotFoundException.DependencyNotFoundException(java.lang.String msg)
Creates a new DependencyNotFoundException.DependencyNotFoundException(java.lang.String msg, java.lang.Throwable ex)
Creates a new DependencyNotFoundException.DependencyNotFoundException(java.lang.Throwable ex)
Creates a new DependencyNotFoundException.
-
-
-
Constructor Detail
-
DependencyNotFoundException
public DependencyNotFoundException()
Creates a new DependencyNotFoundException.
-
DependencyNotFoundException
public DependencyNotFoundException(java.lang.String msg)
Creates a new DependencyNotFoundException.- Parameters:
msg
- a message for the exception.
-
DependencyNotFoundException
public DependencyNotFoundException(java.lang.Throwable ex)
Creates a new DependencyNotFoundException.- Parameters:
ex
- the cause of the exception.
-
DependencyNotFoundException
public DependencyNotFoundException(java.lang.String msg, java.lang.Throwable ex)
Creates a new DependencyNotFoundException.- Parameters:
msg
- a message for the exception.ex
- the cause of the exception.
-
-