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

com.nike.riposte.server.error.exception.PathNotFound404Exception Maven / Gradle / Ivy

There is a newer version: 0.20.0
Show newest version
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