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

website.automate.jwebrobot.exceptions.ActionExecutorMissingException Maven / Gradle / Ivy

package website.automate.jwebrobot.exceptions;

import website.automate.waml.io.model.action.Action;

public class ActionExecutorMissingException extends RuntimeException {

    private static final long serialVersionUID = -1036993601353256378L;

    private static final String MESSAGE = "Missing action executor for action %s.";

    public ActionExecutorMissingException(Class actionClass) {
        super(String.format(MESSAGE, actionClass.getSimpleName()));
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy