@rudderstack/workflow-engine
Version:
A generic workflow execution engine
9 lines • 494 B
TypeScript
import { StepExecutionError } from './step_execution';
import { WorkflowExecutionError } from './workflow_execution';
export declare class ErrorUtils {
static isAssertError(error: any): boolean;
static getErrorStatus(error: any): any;
static createStepExecutionError(error: Error, stepName: string, childStepName?: string): StepExecutionError;
static createWorkflowExecutionError(error: Error, workflowName: string): WorkflowExecutionError;
}
//# sourceMappingURL=utils.d.ts.map