mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2026-06-10 17:27:52 +02:00
8 lines
240 B
TypeScript
8 lines
240 B
TypeScript
import { ApplicationError } from 'n8n-workflow';
|
|
|
|
export class PostgresLiveRowsRetrievalError extends ApplicationError {
|
|
constructor(rows: unknown) {
|
|
super('Failed to retrieve live execution rows in Postgres', { extra: { rows } });
|
|
}
|
|
}
|