This commit is contained in:
Anuken
2019-09-18 15:18:59 -04:00
parent 1e667946b3
commit 0d29d94800
4 changed files with 6 additions and 3 deletions
+3 -1
View File
@@ -46,7 +46,9 @@ public class Net{
t = t.getCause();
}
String error = t.getMessage() == null ? "" : t.getMessage().toLowerCase();
String baseError = Strings.getFinalMesage(e);
String error = baseError == null ? "" : baseError.toLowerCase();
String type = t.getClass().toString().toLowerCase();
boolean isError = false;