UNPKG

lisk-framework

Version:

Lisk blockchain application platform

14 lines 498 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.InvalidNonceError = void 0; const errors_1 = require("../../errors"); class InvalidNonceError extends errors_1.FrameworkError { constructor(message, actual, expected) { super(message); this.code = 'ERR_INVALID_NONCE'; this.actual = actual.toString(); this.expected = expected.toString(); } } exports.InvalidNonceError = InvalidNonceError; //# sourceMappingURL=errors.js.map