Class ScanAgentException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.io.IOException
-
- org.owasp.dependencycheck.exception.ScanAgentException
-
- All Implemented Interfaces:
java.io.Serializable
@ThreadSafe public class ScanAgentException extends java.io.IOException
An exception used when using @{link DependencyCheckScanAgent} to conduct a scan and the scan fails.- Author:
- Steve Springett
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ScanAgentException()
Creates a new ScanAgentException.ScanAgentException(java.lang.String msg)
Creates a new ScanAgentException.ScanAgentException(java.lang.String msg, java.lang.Throwable ex)
Creates a new ScanAgentException.ScanAgentException(java.lang.Throwable ex)
Creates a new ScanAgentException.
-
-
-
Constructor Detail
-
ScanAgentException
public ScanAgentException()
Creates a new ScanAgentException.
-
ScanAgentException
public ScanAgentException(java.lang.String msg)
Creates a new ScanAgentException.- Parameters:
msg
- a message for the exception.
-
ScanAgentException
public ScanAgentException(java.lang.Throwable ex)
Creates a new ScanAgentException.- Parameters:
ex
- the cause of the exception.
-
ScanAgentException
public ScanAgentException(java.lang.String msg, java.lang.Throwable ex)
Creates a new ScanAgentException.- Parameters:
msg
- a message for the exception.ex
- the cause of the exception.
-
-