mirror of
https://github.com/n8n-io/n8n.git
synced 2026-06-03 10:17:00 +02:00
* refactor(core): Improve expressions handling * refactor(core): More expressions handling improvements
36 lines
2.1 KiB
TypeScript
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';
|