tech.greenfield.vertx.irked.exceptions.InvalidRouteConfiguration Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of irked-vertx Show documentation
Show all versions of irked-vertx Show documentation
Opinionated framework for vertx-web route configuration and dispatch
package tech.greenfield.vertx.irked.exceptions;
public class InvalidRouteConfiguration extends Exception {
private static final long serialVersionUID = 4458613845508649189L;
public InvalidRouteConfiguration(String message) {
super(message);
}
}