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

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

package me.desair.tus.server.exception;

import javax.servlet.http.HttpServletResponse;

/**
 * Exception thrown when the given upload length exceeds or internally defined maximum
 */
public class MaxUploadLengthExceededException extends TusException {
    public MaxUploadLengthExceededException(String message) {
        super(HttpServletResponse.SC_REQUEST_ENTITY_TOO_LARGE, message);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy