![JAR search and dependency download from the Maven repository](/logo.png)
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