![JAR search and dependency download from the Maven repository](/logo.png)
com.nike.riposte.server.error.exception.PathNotFound404Exception 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;
/**
* Thrown when a request tries to hit an endpoint that doesn't exist (no matching path). Represents a HTTP 404 response
* code.
*
* @author Nic Munroe
*/
public class PathNotFound404Exception extends RuntimeException {
public PathNotFound404Exception(String message) {
super(message);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy