Class ScanAgentException

java.lang.Object
java.lang.Throwable
java.lang.Exception
java.io.IOException
org.owasp.dependencycheck.exception.ScanAgentException
All Implemented Interfaces:
Serializable

@ThreadSafe public class ScanAgentException extends IOException
An exception used when using @{link DependencyCheckScanAgent} to conduct a scan and the scan fails.
Author:
Steve Springett
See Also:
  • Constructor Details

    • ScanAgentException

      public ScanAgentException()
      Creates a new ScanAgentException.
    • ScanAgentException

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

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

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