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

org.dsa.iot.dslink.node.exceptions.NoSuchPathException Maven / Gradle / Ivy

There is a newer version: 0.24.2
Show newest version
package org.dsa.iot.dslink.node.exceptions;

/**
 * Thrown when no path can be located
 *
 * @author Samuel Grenier
 */
public class NoSuchPathException extends RuntimeException {

    /**
     * @param path Path that doesn't exist
     */
    public NoSuchPathException(String path) {
        super("No such path: " + path);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy