Class DownloadFailedException

  • All Implemented Interfaces:
    java.io.Serializable

    public class DownloadFailedException
    extends java.io.IOException
    An exception used when a download fails.
    Version:
    $Id: $Id
    Author:
    Jeremy Long
    See Also:
    Serialized Form
    • 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

      • DownloadFailedException

        public DownloadFailedException()
        Creates a new DownloadFailedException.
      • DownloadFailedException

        public DownloadFailedException​(java.lang.String msg)
        Creates a new DownloadFailedException.
        Parameters:
        msg - a message for the exception.
      • DownloadFailedException

        public DownloadFailedException​(java.lang.Throwable ex)
        Creates a new DownloadFailedException.
        Parameters:
        ex - the cause of the download failure.
      • DownloadFailedException

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