(pluginId: string, hook: string, cause: unknown)
| 714 | isStorageFailure(cause) ? cause : new StorageError({ message, cause }); |
| 715 | |
| 716 | const pluginStorageFailure = (pluginId: string, hook: string, cause: unknown): StorageFailure => |
| 717 | storageFailureFromUnknown(`${hook} failed for plugin ${pluginId}`, cause); |
| 718 | |
| 719 | const createDefaultMemoryDb = (tables: FumaTables): ExecutorDb => { |
| 720 | const version = "1.0.0"; |
no test coverage detected