Class NoDataException

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

@ThreadSafe public class NoDataException extends IOException
An exception used when the data needed does not exist to perform analysis.
Author:
Jeremy Long
See Also:
  • Constructor Details

    • NoDataException

      public NoDataException()
      Creates a new NoDataException.
    • NoDataException

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

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

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