hunter-news-exceptions
Version:
Contains exceptions defition for Hunter News Social Network
17 lines • 701 B
JavaScript
;
var __extends = (this && this.__extends) || function (d, b) {
for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p];
function __() { this.constructor = d; }
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
};
var base_exception_1 = require("./base.exception");
/** Clase para errores comunes */
var CommonException = (function (_super) {
__extends(CommonException, _super);
function CommonException() {
return _super.apply(this, arguments) || this;
}
return CommonException;
}(base_exception_1.BaseException));
exports.CommonException = CommonException;
//# sourceMappingURL=common.exception.js.map