massive changes

- Changed NoCore to a non-static object
- Cut out all spheres in favour of a NoAdapter interface
- Added basic NoDefaultAdapter object, should be overridden in prod uses
This commit is contained in:
Dave
2015-07-03 22:44:08 +02:00
parent 1e543bafc1
commit c0b2c1c82d
18 changed files with 732 additions and 693 deletions

View File

@@ -23,7 +23,11 @@ public class NoDashException extends Exception {
super();
}
public NoDashException(Exception e) {
public NoDashException(Throwable e) {
super(e);
}
public NoDashException(String message, Throwable e) {
super(message, e);
}
}