mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 18:12:04 +00:00
fix: Prevent errors processed by n8n to be flagged as internal (no-changelog) (#10023)
This commit is contained in:
@@ -10,6 +10,7 @@ import type {
|
||||
} from '../Interfaces';
|
||||
import { validateFieldType } from '../TypeValidation';
|
||||
import * as LoggerProxy from '../LoggerProxy';
|
||||
import { ApplicationError } from '../errors/application.error';
|
||||
|
||||
type FilterConditionMetadata = {
|
||||
index: number;
|
||||
@@ -18,7 +19,7 @@ type FilterConditionMetadata = {
|
||||
errorFormat: 'full' | 'inline';
|
||||
};
|
||||
|
||||
export class FilterError extends Error {
|
||||
export class FilterError extends ApplicationError {
|
||||
constructor(
|
||||
message: string,
|
||||
readonly description: string,
|
||||
|
||||
Reference in New Issue
Block a user