
me.legrange.panstamp.NodeNotFoundException Maven / Gradle / Ivy
package me.legrange.panstamp;
/**
* Thrown when a panStamp device cannot be found in the network.
*
* @since 1.0
* @author Gideon le Grange https://github.com/GideonLeGrange
*/
public class NodeNotFoundException extends NetworkException {
public NodeNotFoundException(String msg) {
super(msg);
}
public NodeNotFoundException(String msg, Throwable cause) {
super(msg, cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy