Class URLConnectionFailureException

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

public class URLConnectionFailureException extends IOException
An exception used when the creation of an URLConnection fails.
Version:
$Id: $Id
Author:
Jeremy Long
See Also:
  • Constructor Details

    • URLConnectionFailureException

      public URLConnectionFailureException()
      Creates a new URLConnectionFailureException.
    • URLConnectionFailureException

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

      public URLConnectionFailureException(Throwable ex)
      Creates a new URLConnectionFailureException.
      Parameters:
      ex - the cause of the download failure.
    • URLConnectionFailureException

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