com.nike.riposte.server.error.exception.InvalidRipostePipelineException 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;
/**
* This will be thrown when the server detects an invalid state that should be prevented by a proper Riposte handler
* pipeline. This represents a major unrecoverable error.
*
* @author Nic Munroe
*/
@SuppressWarnings("WeakerAccess")
public class InvalidRipostePipelineException extends RuntimeException {
public InvalidRipostePipelineException() {
super();
}
public InvalidRipostePipelineException(String message) {
super(message);
}
public InvalidRipostePipelineException(String message, Throwable cause) {
super(message, cause);
}
public InvalidRipostePipelineException(Throwable cause) {
super(cause);
}
}