mirror of
https://github.com/PolyhedralDev/Terra.git
synced 2026-04-08 16:56:07 +00:00
Trees no longer crash fabric. they are incredibly dumb on fabric so i will do them later
This commit is contained in:
@@ -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());
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user