landstrasse
Version:
Strongly typed WAMP Client for browsers
15 lines • 449 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
class SerializationError extends Error {
constructor(inner) {
super('Serialization failed.');
Object.defineProperty(this, "inner", {
enumerable: true,
configurable: true,
writable: true,
value: inner
});
}
}
exports.default = SerializationError;
//# sourceMappingURL=SerializationError.js.map