eu.toolchain.rs.RsMissingHeaderParameter 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 RsMissingHeaderParameter extends RsRequestException {
private static final long serialVersionUID = -169632928749730026L;
final String name;
public RsMissingHeaderParameter(final String name) {
super("Missing header parameter: " + name);
this.name = name;
}
public String getName() {
return name;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy