@n1k1t/mock-server
Version:
The ultimate toolkit to intercept, transform, and simulate HTTP/WS traffic with type-safe expectations
11 lines • 408 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.InternalServerError = void 0;
class InternalServerError extends Error {
constructor(configuration, message) {
super(`Got internal server error [${message}]`);
this.configuration = configuration;
}
}
exports.InternalServerError = InternalServerError;
//# sourceMappingURL=internal-server.error.js.map