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

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

package me.desair.tus.server.exception;

import javax.servlet.http.HttpServletResponse;

/**
 * Exception thrown when a POST request was received on an invalid URI
 */
public class PostOnInvalidRequestURIException extends TusException {

    public PostOnInvalidRequestURIException(String message) {
        super(HttpServletResponse.SC_METHOD_NOT_ALLOWED, message);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy