(reason, description, context)
| 846 | _inherits(TransportError, _Error); |
| 847 | var _super = _createSuper(TransportError); |
| 848 | function TransportError(reason, description, context) { |
| 849 | var _this; |
| 850 | _classCallCheck(this, TransportError); |
| 851 | _this = _super.call(this, reason); |
| 852 | _this.description = description; |
| 853 | _this.context = context; |
| 854 | _this.type = "TransportError"; |
| 855 | return _this; |
| 856 | } |
| 857 | return _createClass(TransportError); |
| 858 | }( /*#__PURE__*/_wrapNativeSuper(Error)); |
| 859 | var Transport = /*#__PURE__*/function (_Emitter) { |
nothing calls this directly
no test coverage detected