com.openxc.sources.DataSourceException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of openxc-it Show documentation
Show all versions of openxc-it Show documentation
Instrumentation test suite for OpenXC library
The newest version!
package com.openxc.sources;
public class DataSourceException extends Exception {
private static final long serialVersionUID = -7086411602769827012L;
public DataSourceException() { }
public DataSourceException(String message) {
super(message);
}
public DataSourceException(String message, Throwable cause) {
super(message, cause);
}
}