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

eu.toolchain.rs.RsMissingPathParameter Maven / Gradle / Ivy

There is a newer version: 0.4.0
Show newest version
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