eu.toolchain.rs.RsMissingPathParameter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tiny-rs-api Show documentation
Show all versions of tiny-rs-api Show documentation
A tiny restful framework for Java (API)
package eu.toolchain.rs;
public class RsMissingPathParameter extends RsRequestException {
private static final long serialVersionUID = 6237179869390832100L;
final String name;
public RsMissingPathParameter(final String name) {
super("Missing path parameter: " + name);
this.name = name;
}
public String getName() {
return name;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy