refactor(core): Set up worker server (#10814)

This commit is contained in:
Iván Ovejero
2024-09-17 10:14:12 +02:00
committed by GitHub
parent e6d84db899
commit 94aa680c9b
6 changed files with 285 additions and 114 deletions

View File

@@ -0,0 +1,7 @@
import { ApplicationError } from 'n8n-workflow';
export class CredentialsOverwritesAlreadySetError extends ApplicationError {
constructor() {
super('Credentials overwrites may not be set more than once.');
}
}