org.dsa.iot.dslink.node.exceptions.NoSuchPathException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dslink Show documentation
Show all versions of dslink Show documentation
SDK for the IoT DSA protocol
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);
}
}