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

play.exceptions.ActionNotFoundException Maven / Gradle / Ivy

There is a newer version: 2.6.2
Show newest version
package play.exceptions;

public class ActionNotFoundException extends PlayException {
    private final String action;

    public ActionNotFoundException(String action, Throwable cause) {
        super(String.format("Action %s not found", action), cause);
        this.action = action;
    }

    public String getAction() {
        return action;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy