UNPKG

rdme

Version:

ReadMe's official CLI and GitHub Action.

9 lines (8 loc) 242 B
/** * A lightweight Error wrapper that we use for outputting errors that don't need aggressive red * coloring or to be printed with `console.error()`. * */ export default class SoftError extends Error { constructor(output: string); }