mirror of
https://github.com/n8n-io/n8n.git
synced 2026-06-03 02:07:06 +02:00
8 lines
189 B
TypeScript
8 lines
189 B
TypeScript
import { UnexpectedError } from 'n8n-workflow';
|
|
|
|
export class DeduplicationError extends UnexpectedError {
|
|
constructor(message: string) {
|
|
super(`Deduplication Failed: ${message}`);
|
|
}
|
|
}
|