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

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

package me.desair.tus.server.exception;

import javax.servlet.http.HttpServletResponse;

/**
 * Exception thrown when the client sends a request for a checksum algorithm we do not support
 */
public class ChecksumAlgorithmNotSupportedException extends TusException {
    public ChecksumAlgorithmNotSupportedException(String message) {
        super(HttpServletResponse.SC_BAD_REQUEST, message);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy