@promptbook/remote-server
Version:
It's time for a paradigm shift. The future of software in plain English, French or Latin
15 lines (14 loc) • 396 B
TypeScript
import type { task_id } from '../types/typeAliases';
/**
* This error indicates errors during the execution of the pipeline
*
* @public exported from `@promptbook/core`
*/
export declare class PipelineExecutionError extends Error {
readonly name = "PipelineExecutionError";
readonly id?: task_id;
constructor(message: string);
}
/**
* TODO: [🧠][🌂] Add id to all errors
*/