fabric-network
Version:
SDK for writing node.js applications to interact with Hyperledger Fabric. This package encapsulates the APIs to connect to a Fabric network, submit transactions and perform queries against the ledger.
22 lines • 593 B
JavaScript
/**
* Copyright 2018 IBM All Rights Reserved.
*
* SPDX-License-Identifier: Apache-2.0
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.TimeoutError = void 0;
const fabricerror_1 = require("./fabricerror");
/**
* Error indicating a timeout.
* @extends module:fabric-network.FabricError
* @memberof module:fabric-network
*/
class TimeoutError extends fabricerror_1.FabricError {
constructor(info) {
super(info);
this.name = TimeoutError.name;
}
}
exports.TimeoutError = TimeoutError;
//# sourceMappingURL=timeouterror.js.map
;