mirror of
https://github.com/czlonkowski/n8n-mcp.git
synced 2026-01-30 22:42:04 +00:00
10 lines
624 B
TypeScript
10 lines
624 B
TypeScript
export declare class ValidationServiceError extends Error {
|
|
readonly nodeType?: string | undefined;
|
|
readonly property?: string | undefined;
|
|
readonly cause?: Error | undefined;
|
|
constructor(message: string, nodeType?: string | undefined, property?: string | undefined, cause?: Error | undefined);
|
|
static jsonParseError(nodeType: string, cause: Error): ValidationServiceError;
|
|
static nodeNotFound(nodeType: string): ValidationServiceError;
|
|
static dataExtractionError(nodeType: string, dataType: string, cause?: Error): ValidationServiceError;
|
|
}
|
|
//# sourceMappingURL=validation-service-error.d.ts.map
|