Files
jlibusb/src/main/java/ch/ntb/usb/USBException.java
2016-07-10 22:42:25 +01:00

24 lines
485 B
Java

/*
* Java libusb wrapper
* Copyright (c) 2005-2006 Andreas Schläpfer <spandi at users.sourceforge.net>
*
* http://libusbjava.sourceforge.net
* This library is covered by the LGPL, read LGPL.txt for details.
*/
package ch.ntb.usb;
import java.io.IOException;
public class USBException extends IOException {
public USBException(String string) {
super(string);
}
/**
*
*/
private static final long serialVersionUID = 1690857437804284710L;
}