Files
actions-ansi-to-html/node_modules/@semantic-release/error/index.js
T
2025-11-11 06:53:11 -05:00

11 lines
303 B
JavaScript

module.exports = class SemanticReleaseError extends Error {
constructor(message, code, details) {
super(message);
Error.captureStackTrace(this, this.constructor);
this.name = 'SemanticReleaseError';
this.code = code;
this.details = details;
this.semanticRelease = true;
}
};