mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2026-07-17 02:17:20 +02:00
52dd2c7619
Co-authored-by: Jan Oberhauser <jan@n8n.io> Co-authored-by: Giulio Andreini <g.andreini@gmail.com> Co-authored-by: Tomi Turtiainen <10324676+tomi@users.noreply.github.com> Co-authored-by: Elias Meire <elias@meire.dev>
8 lines
191 B
TypeScript
8 lines
191 B
TypeScript
import { ApplicationError } from 'n8n-workflow';
|
|
|
|
export class DeduplicationError extends ApplicationError {
|
|
constructor(message: string) {
|
|
super(`Deduplication Failed: ${message}`);
|
|
}
|
|
}
|