
org.carlspring.commons.http.range.validation.ByteRangeValidationException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of commons-http Show documentation
Show all versions of commons-http Show documentation
A library for common HTTP operations.
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