@zuu/owl
Version:
Zuu's Experimental GraphQL Implementation
10 lines • 445 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
class MissingSubscriptionTopicsError extends Error {
constructor(target, methodName) {
super(`${target}#${methodName} subscription has no provided topics!`);
Object.setPrototypeOf(this, new.target.prototype);
}
}
exports.MissingSubscriptionTopicsError = MissingSubscriptionTopicsError;
//# sourceMappingURL=MissingSubscriptionTopicsError.js.map