mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2026-08-02 01:48:35 +02:00
Ensure all errors in `cli` inherit from `ApplicationError` to continue normalizing all the errors we report to Sentry Follow-up to: https://github.com/n8n-io/n8n/pull/7820
4 lines
108 B
TypeScript
4 lines
108 B
TypeScript
import { ApplicationError } from 'n8n-workflow';
|
|
|
|
export class InvalidRoleError extends ApplicationError {}
|