Class 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.
    • Method Summary

      • Methods inherited from class java.lang.Throwable

        addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • 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.