- derive USBException from IOException instead of Exception

git-svn-id: https://svn.code.sf.net/p/libusbjava/code/trunk@235 94ad28fe-ef68-46b1-9651-e7ae4fcf1c4c
This commit is contained in:
spandi
2007-02-03 18:57:20 +00:00
parent 4e713b1f3d
commit a5c1fd261a

View File

@@ -6,7 +6,9 @@
*/ */
package ch.ntb.usb; package ch.ntb.usb;
public class USBException extends Exception{ import java.io.IOException;
public class USBException extends IOException {
public USBException(String string) { public USBException(String string) {
super(string); super(string);