swaggler
Version:
Swaggler helps you smuggle your existing API requests into structured, well-documented specs with ease
13 lines (12 loc) • 373 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.SwagglerException = void 0;
class SwagglerException extends Error {
constructor(message, code, details) {
super(message);
this.code = code;
this.details = details;
this.name = "SwagglerException";
}
}
exports.SwagglerException = SwagglerException;