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

org.carlspring.commons.http.range.validation.ByteRangeValidationException Maven / Gradle / Ivy

The newest version!
package org.carlspring.commons.http.range.validation;

/**
 * @author Pablo Tirado
 */
public class ByteRangeValidationException
        extends RuntimeException
{

    public ByteRangeValidationException(String message)
    {
        super(message);
    }

    public ByteRangeValidationException(String message,
                                        Throwable cause)
    {
        super(message, cause);
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy