mirror of
https://github.com/n8n-io/n8n.git
synced 2025-03-05 20:50:17 -08:00
8 lines
240 B
TypeScript
8 lines
240 B
TypeScript
|
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 });
|
||
|
}
|
||
|
}
|