listr-error.js 152 B

123456789
  1. 'use strict';
  2. class ListrError extends Error {
  3. constructor(message) {
  4. super(message);
  5. this.name = 'ListrError';
  6. }
  7. }
  8. module.exports = ListrError;