UNPKG

392 BJavaScriptView Raw
1"use strict";
2Object.defineProperty(exports, "__esModule", { value: true });
3class MissingSubscriptionTopicsError extends Error {
4 constructor(target, methodName) {
5 super(`${target.name}#${methodName} subscription has no provided topics!`);
6 Object.setPrototypeOf(this, new.target.prototype);
7 }
8}
9exports.MissingSubscriptionTopicsError = MissingSubscriptionTopicsError;