2025-08-05 23:51:42 +08:00

10 lines
152 B
JavaScript

'use strict';
class ListrError extends Error {
constructor(message) {
super(message);
this.name = 'ListrError';
}
}
module.exports = ListrError;