mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-15 09:04:07 -08:00
1c6178759c
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
8 lines
241 B
TypeScript
8 lines
241 B
TypeScript
import { ApplicationError } from 'n8n-workflow';
|
|
|
|
export class ExternalSecretsProviderNotFoundError extends ApplicationError {
|
|
constructor(public providerName: string) {
|
|
super(`External secrets provider not found: ${providerName}`);
|
|
}
|
|
}
|