@schibstedspain/boros-cmp
Version:
Schibsted GDPR - Consent Management Provider - Standalone
32 lines (23 loc) • 857 B
JavaScript
;
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = void 0;
var _inheritsLoose2 = _interopRequireDefault(require("@babel/runtime/helpers/inheritsLoose"));
var _wrapNativeSuper2 = _interopRequireDefault(require("@babel/runtime/helpers/wrapNativeSuper"));
var CommandNotFoundError =
/*#__PURE__*/
function (_Error) {
(0, _inheritsLoose2.default)(CommandNotFoundError, _Error);
function CommandNotFoundError(callId) {
var _this;
_this = _Error.call(this) || this;
_this.name = 'CommandNotFoundError';
_this.callId = callId;
_this.message = 'Command not found!';
return _this;
}
return CommandNotFoundError;
}((0, _wrapNativeSuper2.default)(Error));
exports.default = CommandNotFoundError;