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:
@@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user