Class ResourceNotFoundException

java.lang.Object
java.lang.Throwable
java.lang.Exception
org.owasp.dependencycheck.utils.ResourceNotFoundException
All Implemented Interfaces:
Serializable

@ThreadSafe public class ResourceNotFoundException extends Exception
An exception used when the resource could not be retrieved because a 404 was received.
Author:
Jeremy Long
See Also:
  • Constructor Details

    • ResourceNotFoundException

      public ResourceNotFoundException()
      Creates a new ResourceNotFoundException.
    • ResourceNotFoundException

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

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

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