extendo-error
Version:
Safely and simply extend native Error with prototype chaining support
8 lines (7 loc) • 338 B
JavaScript
;
var child_error_1 = require("./child-error");
exports.ChildError = child_error_1.default;
var another_child_error_1 = require("./another-child-error");
exports.AnotherChildError = another_child_error_1.default;
var grand_child_error_1 = require("./grand-child-error");
exports.GrandChildError = grand_child_error_1.default;