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

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

package me.desair.tus.server.exception;

import javax.servlet.http.HttpServletResponse;

/**
 * Exception thrown when we receive a HTTP request with a method name that we do not support
 */
public class UnsupportedMethodException extends TusException {
    public UnsupportedMethodException(String message) {
        super(HttpServletResponse.SC_METHOD_NOT_ALLOWED, message);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy