(message: string, error: unknown)
| 3747 | } |
| 3748 | |
| 3749 | function runtimeOwnerCleanupFailure(message: string, error: unknown): Error { |
| 3750 | return error instanceof RuntimeOwnerCleanupError || |
| 3751 | error instanceof RuntimeMessageAuthorityInvariantError || |
| 3752 | error instanceof RuntimeInteractionInvariantError || |
| 3753 | error instanceof RuntimeInteractionFailStopError |
| 3754 | ? error |
| 3755 | : new RuntimeOwnerCleanupError(message, error); |
| 3756 | } |
| 3757 | |
| 3758 | function containsRuntimeOwnerCleanupFailure(error: unknown): boolean { |
| 3759 | if ( |
no outgoing calls
no test coverage detected