mirror of
https://github.com/n8n-io/n8n.git
synced 2026-05-30 08:17:06 +02:00
8 lines
238 B
TypeScript
8 lines
238 B
TypeScript
import { UnexpectedError } from 'n8n-workflow';
|
|
|
|
export class PostgresLiveRowsRetrievalError extends UnexpectedError {
|
|
constructor(rows: unknown) {
|
|
super('Failed to retrieve live execution rows in Postgres', { extra: { rows } });
|
|
}
|
|
}
|