File size: 238 Bytes
aec3094
 
 
 
 
 
 
1
2
3
4
5
6
7
8
import { UnexpectedError } from 'n8n-workflow';

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