Error types from other javascript libs, I usually do something like: err => new MyWrapedError({ cause: err }) the problem is however that err is of type Error, which means that if I print it or want to show it somewhere, it does not show the actual details of the error. Is there some sort of Effect wrapper around "traditional errors" that shows all of the details?