| import { UnexpectedError } from 'n8n-workflow'; | |
| export class PostgresLiveRowsRetrievalError extends UnexpectedError { | |
| constructor(rows: unknown) { | |
| super('Failed to retrieve live execution rows in Postgres', { extra: { rows } }); | |
| } | |
| } | |
| import { UnexpectedError } from 'n8n-workflow'; | |
| export class PostgresLiveRowsRetrievalError extends UnexpectedError { | |
| constructor(rows: unknown) { | |
| super('Failed to retrieve live execution rows in Postgres', { extra: { rows } }); | |
| } | |
| } | |