UNPKG

@eagleoutice/flowr

Version:

Static Dataflow Analyzer and Program Slicer for the R Programming Language

14 lines 432 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.InvalidPipelineError = void 0; /** * Thrown if for whatever reason, the pipeline is invalid. */ class InvalidPipelineError extends Error { constructor(message) { super(message); this.name = 'InvalidPipelineError'; } } exports.InvalidPipelineError = InvalidPipelineError; //# sourceMappingURL=invalid-pipeline-error.js.map