Removed all incidents of e.printStackTrace, wrapped errors with

NoDashFatalExceptions instead of overwriting
This commit is contained in:
Dave
2014-12-26 17:15:54 +02:00
parent 3b97efec74
commit ee72415e63
10 changed files with 69 additions and 55 deletions

View File

@@ -28,4 +28,8 @@ public class NoDashFatalException extends RuntimeException {
public NoDashFatalException(String string) {
super(string);
}
public NoDashFatalException(String string, Exception e) {
super(string, e);
}
}