/**
* A lightweight Error wrapper that we use for outputting errors that don't need aggressive red
* coloring or to be printed with `console.error()`.
*
*/exportdefaultclassSoftErrorextendsError {
constructor(output) {
super(output);
this.name = 'SoftError';
}
}