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

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

package me.desair.tus.server.exception;

import javax.servlet.http.HttpServletResponse;

public class InvalidContentLengthException extends TusException {
    public InvalidContentLengthException(String message) {
        super(HttpServletResponse.SC_BAD_REQUEST, message);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy