![JAR search and dependency download from the Maven repository](/logo.png)
eu.toolchain.rs.RsMissingQueryParameter 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 RsMissingQueryParameter extends RsRequestException {
private static final long serialVersionUID = -7711898267066720517L;
final String name;
public RsMissingQueryParameter(final String name) {
super("Missing query parameter: " + name);
this.name = name;
}
public String getName() {
return name;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy