Migrate to general jlibarduino

This commit is contained in:
2015-06-25 15:56:42 +01:00
parent 55d51fdcd2
commit df4bab1750
19 changed files with 4860 additions and 427 deletions

View File

@@ -0,0 +1,11 @@
package com.github.boukefalos.arduino.exception;
import java.io.IOException;
public class ArduinoException extends IOException {
protected static final long serialVersionUID = 1L;
public ArduinoException(String message) {
super(message);
}
}