com.openxc.sources.DataSourceResourceException 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 DataSourceResourceException extends DataSourceException {
private static final long serialVersionUID = -8121248199978505265L;
public DataSourceResourceException(String message, Throwable cause) {
super(message, cause);
}
public DataSourceResourceException(String message) {
super(message);
}
}