@chix/flow
Version:
13 lines • 406 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
var ValidationError = (function () {
function ValidationError(message, id, obj) {
this.message = message;
this.id = id;
this.obj = obj;
this.name = 'ValidationError';
}
return ValidationError;
}());
exports.ValidationError = ValidationError;
//# sourceMappingURL=ValidationError.js.map