com.comsysto.buildlight.cleware.driver.TrafficLightException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cleware-driver Show documentation
Show all versions of cleware-driver Show documentation
Java Driver for Cleware Traffic Light
The newest version!
package com.comsysto.buildlight.cleware.driver;
/**
* @author zutherb
*/
public class TrafficLightException extends RuntimeException {
public TrafficLightException() {
}
public TrafficLightException(String message) {
super(message);
}
public TrafficLightException(String message, Throwable cause) {
super(message, cause);
}
public TrafficLightException(Throwable cause) {
super(cause);
}
}