com.nike.riposte.server.error.exception.InvalidHttpRequestException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of riposte-spi Show documentation
Show all versions of riposte-spi Show documentation
Riposte module riposte-spi
package com.nike.riposte.server.error.exception;
public class InvalidHttpRequestException extends RuntimeException {
public InvalidHttpRequestException(String message, Throwable cause) {
super(message, cause);
}
}