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

io.yawp.repository.EndpointNotFoundException Maven / Gradle / Ivy

There is a newer version: 2.08alpha
Show newest version
package io.yawp.repository;

public class EndpointNotFoundException extends RuntimeException {

    private static final long serialVersionUID = 6669941619903531041L;

    private String endpointPath;

    public EndpointNotFoundException(String endpointPath) {
        this.endpointPath = endpointPath;
    }

    public String getEndpointPath() {
        return endpointPath;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy