mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-18 10:31:15 +00:00
8 lines
171 B
TypeScript
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.`);
|
|
}
|
|
}
|