hunter-news-exceptions
Version:
Contains exceptions defition for Hunter News Social Network
17 lines • 740 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 error en la autenticación */
var ValidationException = (function (_super) {
__extends(ValidationException, _super);
function ValidationException() {
return _super.apply(this, arguments) || this;
}
return ValidationException;
}(base_exception_1.BaseException));
exports.ValidationException = ValidationException;
//# sourceMappingURL=validation.exception.js.map