com.openxc.sinks.DataSinkException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of openxc-examples Show documentation
Show all versions of openxc-examples Show documentation
Example Vehicle Dashboard application using OpenXC
package com.openxc.sinks;
public class DataSinkException extends Exception {
private static final long serialVersionUID = 245911625390405295L;
public DataSinkException() { }
public DataSinkException(String message) {
super(message);
}
public DataSinkException(String message, Throwable cause) {
super(message, cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy