Files
n8n-enterprise-unlocked/packages/cli/src/errors/not-string-array.error.ts
2025-02-27 09:30:55 +02:00

8 lines
171 B
TypeScript

import { UserError } from 'n8n-workflow';
export class NotStringArrayError extends UserError {
constructor(env: string) {
super(`${env} is not a string array.`);
}
}