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

me.desair.tus.server.exception.UploadLengthNotAllowedOnConcatenationException Maven / Gradle / Ivy

package me.desair.tus.server.exception;

import javax.servlet.http.HttpServletResponse;

/**
 * Exception thrown when the Client includes the Upload-Length header in the upload creation.
 */
public class UploadLengthNotAllowedOnConcatenationException extends TusException {
    public UploadLengthNotAllowedOnConcatenationException(String message) {
        super(HttpServletResponse.SC_BAD_REQUEST, message);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy