func AbortToError
AbortToError executes a function that might abort, and if it does, revives the abort and converts it to an error.
AbortToError executes a function that might abort, and if it does, revives the abort and converts it to an error.
PanicAbortToError executes a function that might either panic or abort, and if it does, it recovers the panic or revives the abort and converts it to an error.
PanicToError executes a function that might panic and, if it does, recovers the panic and converts it to an error.