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

com.openxc.interfaces.VehicleInterfaceException Maven / Gradle / Ivy

The newest version!
package com.openxc.interfaces;

public class VehicleInterfaceException extends Exception {
    private static final long serialVersionUID = 6341748165315968366L;

    public VehicleInterfaceException() { }

    public VehicleInterfaceException(String message) {
        super(message);
    }

    public VehicleInterfaceException(String message, Throwable cause) {
        super(message, cause);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy