![JAR search and dependency download from the Maven repository](/logo.png)
me.desair.tus.server.exception.UploadInProgressException Maven / Gradle / Ivy
package me.desair.tus.server.exception;
/**
* Exception thrown when accessing an upload that is still in progress and this
* is not supported by the operation
*/
public class UploadInProgressException extends TusException {
public UploadInProgressException(String message) {
//422 Unprocessable Entity
//The request was well-formed but was unable to be followed due to semantic errors.
super(422, message);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy