com.openxc.interfaces.usb.UsbDeviceException 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.interfaces.usb;
import com.openxc.sources.DataSourceException;
public class UsbDeviceException extends DataSourceException {
/**
*
*/
private static final long serialVersionUID = -7730917088324583224L;
public UsbDeviceException(String message, Throwable cause) {
super(message, cause);
}
public UsbDeviceException(String message) {
super(message);
}
}