chaingate
Version:
A complete TypeScript library for connecting to and making transactions on different blockchains
13 lines • 425 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.EncryptionError = void 0;
class EncryptionError extends Error {
constructor(message) {
super(message);
if (Error.captureStackTrace)
Error.captureStackTrace(this, EncryptionError);
this.name = this.constructor.name;
}
}
exports.EncryptionError = EncryptionError;
//# sourceMappingURL=errors.js.map