@belgattitude/http-exception
Version:
Warning: has been moved to @httpx/exception. Please update.
20 lines (17 loc) • 894 B
JavaScript
import { inherits as _inherits, createClass as _createClass, assertThisInitialized as _assertThisInitialized } from '../_virtual/_rollupPluginBabelHelpers.js';
import { getSuper } from '../utils/getSuper.js';
import { HttpServerException } from '../base/HttpServerException.js';
var HttpInternalServerError = function (_HttpServerException) {
_inherits(HttpInternalServerError, _HttpServerException);
function HttpInternalServerError(msgOrParams) {
var _this;
var name = 'InternalServerError';
_this = _HttpServerException.call(this, 500, getSuper(name, msgOrParams)) || this;
Object.setPrototypeOf(_assertThisInitialized(_this), HttpInternalServerError.prototype);
_this.name = "Http".concat(name);
return _this;
}
return _createClass(HttpInternalServerError);
}(HttpServerException);
HttpInternalServerError.STATUS = 500;
export { HttpInternalServerError };