io.yawp.repository.EndpointNotFoundException Maven / Gradle / Ivy
package io.yawp.repository;
public class EndpointNotFoundException extends RuntimeException {
private static final long serialVersionUID = 6669941619903531041L;
private final String endpointPath;
public EndpointNotFoundException(String endpointPath) {
this.endpointPath = endpointPath;
}
public String getEndpointPath() {
return endpointPath;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy