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

play.exceptions.NoRouteFoundException Maven / Gradle / Ivy

There is a newer version: 2.6.2
Show newest version
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));
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy