All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.maven.shared.io.download.DownloadFailedException Maven / Gradle / Ivy

There is a newer version: 3.0.0
Show newest version
package org.apache.maven.shared.io.download;

public class DownloadFailedException
    extends Exception
{
    
    private static final long serialVersionUID = 1L;
    
    private String url;

    public DownloadFailedException( String url, String message, Throwable cause )
    {
        super( message, cause );
        this.url = url;
    }

    public DownloadFailedException( String url, String message )
    {
        super( message );
        this.url = url;
    }
    
    public String getUrl()
    {
        return url;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy