io.github.kamilszewc.simplerouter.NoRoutingException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of simple-java-http-router Show documentation
Show all versions of simple-java-http-router Show documentation
Simple Java router for building http services
package io.github.kamilszewc.simplerouter;
public class NoRoutingException extends Exception {
public NoRoutingException() {
super();
}
public NoRoutingException(String message) {
super(message);
}
public NoRoutingException(String message, Throwable cause) {
super(message, cause);
}
}