react-redux-isomorphic-filterlist
Version:
Integration of react-redux-isomorphic and @vtaits/react-filterlist
33 lines (24 loc) • 1.11 kB
JavaScript
import _createClass from "@babel/runtime/helpers/createClass";
import _classCallCheck from "@babel/runtime/helpers/classCallCheck";
import _assertThisInitialized from "@babel/runtime/helpers/assertThisInitialized";
import _inherits from "@babel/runtime/helpers/inherits";
import _createSuper from "@babel/runtime/helpers/createSuper";
import _defineProperty from "@babel/runtime/helpers/defineProperty";
import ExtendableError from 'es6-error';
export var LoadListError = /*#__PURE__*/function (_ExtendableError) {
_inherits(LoadListError, _ExtendableError);
var _super = _createSuper(LoadListError);
function LoadListError(_ref) {
var _this;
var error = _ref.error,
additional = _ref.additional;
_classCallCheck(this, LoadListError);
_this = _super.call(this, 'List loading failed');
_defineProperty(_assertThisInitialized(_this), "error", void 0);
_defineProperty(_assertThisInitialized(_this), "additional", void 0);
_this.error = error;
_this.additional = additional;
return _this;
}
return _createClass(LoadListError);
}(ExtendableError);