git-svn-id: https://svn.code.sf.net/p/libusbjava/code/trunk@235 94ad28fe-ef68-46b1-9651-e7ae4fcf1c4c
23 lines
429 B
Java
23 lines
429 B
Java
/*
|
|
* Java libusb wrapper
|
|
* Copyright (c) 2005-2006 Andreas Schläpfer <libusb@drip.ch>
|
|
*
|
|
* 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;
|
|
|
|
}
|