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

org.jmeterplugins.repository.exception.DownloadException Maven / Gradle / Ivy

There is a newer version: 1.10
Show newest version
package org.jmeterplugins.repository.exception;

/**
 *  Throws when there are any errors in downloading
 */
public class DownloadException extends RuntimeException {
    public DownloadException() {
    }

    public DownloadException(String message) {
        super(message);
    }

    public DownloadException(String message, Throwable cause) {
        super(message, cause);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy