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

org.fulib.fx.controller.exception.ControllerDuplicatedRouteException Maven / Gradle / Ivy

package org.fulib.fx.controller.exception;

import static org.fulib.fx.util.FrameworkUtil.error;

public class ControllerDuplicatedRouteException extends RuntimeException {

    public ControllerDuplicatedRouteException(String route, Class oldController, Class newController) {
        super(error(3002).formatted(route, oldController.getName(), newController.getName()));
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy