(message: string)
| 627 | |
| 628 | /** @internal */ |
| 629 | export const dieMessage = (message: string): STM.STM<never> => dieSync(() => new Cause.RuntimeException(message)) |
| 630 | |
| 631 | /** @internal */ |
| 632 | export const dieSync = (evaluate: LazyArg<unknown>): STM.STM<never> => { |
nothing calls this directly
no test coverage detected
searching dependent graphs…