semantic-release/test/fixtures/plugin-error-inherited.js
2023-01-13 15:55:40 -08:00

15 lines
372 B
JavaScript

import SemanticReleaseError from "@semantic-release/error";
class InheritedError extends SemanticReleaseError {
constructor(message, code) {
super(message);
Error.captureStackTrace(this, this.constructor);
this.name = this.constructor.name;
this.code = code;
}
}
export default () => {
throw new InheritedError("Inherited error", "EINHERITED");
};