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

io.sterodium.extensions.client.download.FileDownloadException Maven / Gradle / Ivy

There is a newer version: 1.0
Show newest version
package io.sterodium.extensions.client.download;

/**
 * @author Alexey Nikolaenko [email protected]
 *         Date: 30/09/2015
 */
class FileDownloadException extends RuntimeException {

    public FileDownloadException(String message, int code) {
        super(String.format("Response returned code %d, with message: %s", code, message));
    }

    public FileDownloadException(Throwable cause) {
        super(cause);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy