(pluginId: string, hook: string, cause: unknown)
| 489 | isStorageFailure(cause) ? cause : new StorageError({ message, cause }); |
| 490 | |
| 491 | const pluginStorageFailure = (pluginId: string, hook: string, cause: unknown): StorageFailure => |
| 492 | storageFailureFromUnknown(`${hook} failed for plugin ${pluginId}`, cause); |
| 493 | |
| 494 | const createDefaultMemoryDb = (tables: FumaTables): ExecutorDb => { |
| 495 | const version = "1.0.0"; |
no test coverage detected