@taquito/taquito
Version:
High level functionality that builds upon the other packages in the Tezos Typescript Library Suite.
15 lines • 536 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.RevealEstimateError = void 0;
/**
* @category Error
* @description Error that indicates invalid public key being passed when doing a reveal operation estimate
*/
class RevealEstimateError extends Error {
constructor() {
super('Unable to estimate the reveal operation, the public key is unknown');
this.name = 'Reveal Estimate Error';
}
}
exports.RevealEstimateError = RevealEstimateError;
//# sourceMappingURL=error.js.map