mirror of
https://github.com/n8n-io/n8n.git
synced 2026-05-31 08:46:58 +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}`);
|
|
}
|
|
}
|