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

com.comsysto.buildlight.cleware.driver.TrafficLightException Maven / Gradle / Ivy

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);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy