n8n/packages/workflow/src/errors/node-ssl.error.ts

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

8 lines
240 B
TypeScript
Raw Normal View History

import { ExecutionBaseError } from './abstract/execution-base.error';
export class NodeSslError extends ExecutionBaseError {
constructor(cause: Error) {
super("SSL Issue: consider using the 'Ignore SSL issues' option", { cause });
}
}