@script-bridge/server
Version:
two-way communication system between ScriptAPI and backend server using http request
12 lines (11 loc) • 375 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.UnhandledRequestError = void 0;
class UnhandledRequestError extends Error {
channelId;
constructor(channelId) {
super(`Received request for unhandled channel: ${channelId}`);
this.channelId = channelId;
}
}
exports.UnhandledRequestError = UnhandledRequestError;
;