Started to update the library to API 3.22 RC

Change-Id: I8eaf3151b1d405799eb582564f0e1e8fbcb7744c
Signed-off-by: Ricky Barrette <rickbarrette@gmail.com>
This commit is contained in:
2012-03-12 00:53:13 -04:00
parent 2b1ee23cff
commit 5f51c1caa1
93 changed files with 4500 additions and 2994 deletions

View File

@@ -0,0 +1,9 @@
package ioio.lib.spi;
public class NoRuntimeSupportException extends Exception {
private static final long serialVersionUID = -6559208663699429514L;
public NoRuntimeSupportException(String desc) {
super(desc);
}
}