n8n/packages/cli/src/errors/feature-not-licensed.error.ts

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

12 lines
397 B
TypeScript
Raw Normal View History

import { ApplicationError } from 'n8n-workflow';
import type { LICENSE_FEATURES } from '@/constants';
export class FeatureNotLicensedError extends ApplicationError {
constructor(feature: (typeof LICENSE_FEATURES)[keyof typeof LICENSE_FEATURES]) {
super(
`Your license does not allow for ${feature}. To enable ${feature}, please upgrade to a license that supports this feature.`,
);
}
}