Trees no longer crash fabric. they are incredibly dumb on fabric so i will do them later

This commit is contained in:
dfsek
2020-12-15 02:03:54 -07:00
parent ee35c371ec
commit 6f6767ab86
5 changed files with 85 additions and 2 deletions

View File

@@ -32,7 +32,10 @@ public class Transformer<F, T> {
}
}
StringBuilder exBuilder = new StringBuilder("Could not transform input; all attempts failed: ").append(from.toString()).append("\n");
for(Exception exception : exceptions) exBuilder.append(exception.getMessage()).append("\n");
for(Exception exception : exceptions) {
exBuilder.append(exception.getMessage()).append("\n");
exception.printStackTrace();
}
throw new AttemptsFailedException(exBuilder.toString());
}