Files
ioiolib/IOIOLib/src/ioio/lib/spi/NoRuntimeSupportException.java
Ricky Barrette efb63070a2 Updated ioio library to the lastest code
Orignal code pulled from git://github.com/ytai/ioio.git

Please note that built in Android Open Accessory support is included in
Android 3.1 (API Level 12). If you want to use Android 2.3.4 (API Level
10) amd higher, you will need to use the Add-On Support Library.
2012-12-11 11:06:07 -05:00

9 lines
227 B
Java

package ioio.lib.spi;
public class NoRuntimeSupportException extends RuntimeException {
private static final long serialVersionUID = -6559208663699429514L;
public NoRuntimeSupportException(String desc) {
super(desc);
}
}