n8n/packages/workflow/src/errors/index.ts
Iván Ovejero efc6c123c8
Merge commit from fork
* refactor(core): Improve expressions handling

* refactor(core): More expressions handling improvements
2026-01-22 12:40:09 +02:00

36 lines
2.1 KiB
TypeScript

export { BaseError, type BaseErrorOptions } from './base/base.error';
export { OperationalError, type OperationalErrorOptions } from './base/operational.error';
export { UnexpectedError, type UnexpectedErrorOptions } from './base/unexpected.error';
export { UserError, type UserErrorOptions } from './base/user.error';
export { ApplicationError } from '@n8n/errors';
export { ExpressionError } from './expression.error';
export {
ExecutionCancelledError,
ManualExecutionCancelledError,
SystemShutdownExecutionCancelledError,
TimeoutExecutionCancelledError,
type CancellationReason,
} from './execution-cancelled.error';
export { NodeApiError } from './node-api.error';
export { NodeOperationError } from './node-operation.error';
export { WorkflowConfigurationError } from './workflow-configuration.error';
export { NodeSslError } from './node-ssl.error';
export { WebhookPathTakenError } from './webhook-taken.error';
export { WorkflowActivationError } from './workflow-activation.error';
export { WorkflowDeactivationError } from './workflow-deactivation.error';
export { WorkflowOperationError } from './workflow-operation.error';
export { SubworkflowOperationError } from './subworkflow-operation.error';
export { CliWorkflowOperationError } from './cli-subworkflow-operation.error';
export { TriggerCloseError } from './trigger-close.error';
export { NodeError } from './abstract/node.error';
export { ExecutionBaseError } from './abstract/execution-base.error';
export { ExpressionExtensionError } from './expression-extension.error';
export { ExpressionDestructuringError } from './expression-destructuring.error';
export { ExpressionComputedDestructuringError } from './expression-computed-destructuring.error';
export { ExpressionClassExtensionError } from './expression-class-extension.error';
export { ExpressionReservedVariableError } from './expression-reserved-variable.error';
export { ExpressionWithStatementError } from './expression-with-statement.error';
export { DbConnectionTimeoutError } from './db-connection-timeout-error';
export { ensureError } from './ensure-error';