masto
Version:
Mastodon API client for JavaScript, TypeScript, Node.js, browsers
12 lines (11 loc) • 395 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.MastoWebSocketError = void 0;
const ts_custom_error_1 = require("ts-custom-error");
class MastoWebSocketError extends ts_custom_error_1.CustomError {
constructor(message, options) {
super(message, options);
this.message = message;
}
}
exports.MastoWebSocketError = MastoWebSocketError;