mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 18:12:04 +00:00
16 lines
524 B
TypeScript
16 lines
524 B
TypeScript
import { ApplicationError } from 'n8n-workflow';
|
|
|
|
import { isWrappableError, WrappedExecutionError } from './errors/WrappedExecutionError';
|
|
|
|
export function throwExecutionError(error: unknown): never {
|
|
if (error instanceof Error) {
|
|
throw error;
|
|
} else if (isWrappableError(error)) {
|
|
// The error coming from task runner is not an instance of error,
|
|
// so we need to wrap it in an error instance.
|
|
throw new WrappedExecutionError(error);
|
|
}
|
|
|
|
throw new ApplicationError(`Unknown error: ${JSON.stringify(error)}`);
|
|
}
|