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

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

package me.desair.tus.server.exception;

import javax.servlet.http.HttpServletResponse;

/**
 * The Server MUST respond with the 403 Forbidden status to PATCH requests against a upload URL
 */
public class PatchOnFinalUploadNotAllowedException extends TusException {

    public PatchOnFinalUploadNotAllowedException(String message) {
        super(HttpServletResponse.SC_FORBIDDEN, message);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy