fix(core): Improve the error returned to users on SSL issues (#6494)

This commit is contained in:
कारतोफ्फेलस्क्रिप्ट™
2023-06-20 17:54:05 +02:00
committed by GitHub
parent 7a95e08bfd
commit 1b084bc56b
2 changed files with 10 additions and 0 deletions

View File

@@ -444,3 +444,9 @@ export class NodeApiError extends NodeError {
}
}
}
export class NodeSSLError extends ExecutionBaseError {
constructor(cause: Error) {
super("SSL Issue: consider using the 'Ignore SSL issues' option", { cause });
}
}