io.tus.java.client.ResumingNotEnabledException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tus-java-client Show documentation
Show all versions of tus-java-client Show documentation
Java client for tus, the resumable file uploading protocol.
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");
}
}