play.exceptions.NoRouteFoundException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of framework Show documentation
Show all versions of framework Show documentation
RePlay is a fork of the Play1 framework, created by Codeborne.
package play.exceptions;
import java.util.Map;
public class NoRouteFoundException extends PlayException {
public NoRouteFoundException(String file) {
super(String.format("No route found to display file %s", file));
}
public NoRouteFoundException(String action, Map args) {
super(String.format("No route found for action %s with arguments %s", action, args));
}
}