yeamy.restlite.addition.NoMatchMethodException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of restlite-core Show documentation
Show all versions of restlite-core Show documentation
Helps you with RESTful style servlet developments.
The newest version!
package yeamy.restlite.addition;
import yeamy.restlite.RESTfulRequest;
public class NoMatchMethodException extends Exception {
private static final long serialVersionUID = -6391725202573079565L;
public NoMatchMethodException(RESTfulRequest req) {
super("no match service found! " + req.getRequest().getRequestURI());
}
}