(pluginId: string, hook: string, cause: unknown)
| 752 | isStorageFailure(cause) ? cause : new StorageError({ message, cause }); |
| 753 | |
| 754 | const pluginStorageFailure = (pluginId: string, hook: string, cause: unknown): StorageFailure => |
| 755 | storageFailureFromUnknown(`${hook} failed for plugin ${pluginId}`, cause); |
| 756 | |
| 757 | const createDefaultMemoryDb = (tables: FumaTables): ExecutorDb => { |
| 758 | const version = "1.0.0"; |
no test coverage detected