@halsp/http
Version:
支持 Halsp HTTP 请求
12 lines • 560 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.UnsupportedMediaTypeException = void 0;
const http_status_codes_1 = require("http-status-codes");
const http_exception_1 = require("./http-exception.cjs");
class UnsupportedMediaTypeException extends http_exception_1.HttpException {
constructor(error) {
super(http_status_codes_1.StatusCodes.UNSUPPORTED_MEDIA_TYPE, error);
}
}
exports.UnsupportedMediaTypeException = UnsupportedMediaTypeException;
//# sourceMappingURL=unsupported-media-type-exception.js.map
;