Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix unknown compiler crash printing 'null' (#780)
Resolves the `Effect Compiler Crash: null` part of #760. The actual problem there was that `e.getMessage` can return `null` and it does for... _StackOverflowException_ 🥳. Looking at the docs, it's recommended to use `e.toString`. While I was at it, I modified stack trace printing, now we do it properly by using `.printStackTrace`. This is very related to #731, I just want to get this out quickly to unblock other problems.
- Loading branch information