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

io.sterodium.extensions.client.upload.ResourceUploadException Maven / Gradle / Ivy

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

/**
 * @author Alexey Nikolaenko [email protected]
 *         Date: 25/09/2015
 */
class ResourceUploadException extends RuntimeException {
    public ResourceUploadException(int code, String message) {
        super(String.format("Resource upload returned status %d with message: %s", code, message));
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy