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

io.tus.java.client.ResumingNotEnabledException Maven / Gradle / Ivy

There is a newer version: 0.5.0
Show newest version
package io.tus.java.client;

/**
 * This exception is thrown when you try to resume an upload using
 * {@link TusClient#resumeUpload(TusUpload)} without enabling it first.
 */
public class ResumingNotEnabledException extends Exception {
    public ResumingNotEnabledException() {
        super("resuming not enabled for this client. use enableResuming() to do so");
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy