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

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