@studyportals/sp-r2d2
Version:
A framework that contains various components used when developing projects that will be deployed via AWS λ.
8 lines (7 loc) • 383 B
TypeScript
import { IResult } from '@studyportals/sp-r2d2-interface';
import { ExecutionErrorReason } from './execution-error-reason.enum';
export declare class ExecutionError extends Error {
readonly reason: ExecutionErrorReason;
readonly result: IResult | undefined;
constructor(message?: string | undefined, reason?: ExecutionErrorReason, result?: IResult | undefined);
}