@fioprotocol/fiojs
Version:
FioJS is a Utility SDK for packing, signing and encryption functionality for the FIO blockchain. It is used by the FIO TypeScript SDK
44 lines • 1.8 kB
JavaScript
/**
* @module RPC-Error
*/
// copyright defined in fiojs/LICENSE.txt
var __extends = (this && this.__extends) || (function () {
var extendStatics = function (d, b) {
extendStatics = Object.setPrototypeOf ||
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
return extendStatics(d, b);
};
return function (d, b) {
if (typeof b !== "function" && b !== null)
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
extendStatics(d, b);
function __() { this.constructor = d; }
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
};
})();
Object.defineProperty(exports, "__esModule", { value: true });
exports.RpcError = void 0;
/** Holds detailed error information */
var RpcError = /** @class */ (function (_super) {
__extends(RpcError, _super);
function RpcError(json) {
var _this = this;
if (json.error && json.error.details && json.error.details.length && json.error.details[0].message) {
_this = _super.call(this, json.error.details[0].message) || this;
}
else if (json.processed && json.processed.except && json.processed.except.message) {
_this = _super.call(this, json.processed.except.message) || this;
}
else {
_this = _super.call(this, json.message) || this;
}
Object.setPrototypeOf(_this, RpcError.prototype);
_this.json = json;
return _this;
}
return RpcError;
}(Error));
exports.RpcError = RpcError;
//# sourceMappingURL=chain-rpcerror.js.map
;