Socket
Socket
Sign inDemoInstall

@worldsibu/convector-core-errors

Package Overview
Dependencies
Maintainers
1
Versions
187
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 1.2.1-0-alpha.38c096fa to 1.2.1-0-alpha.3ee6f147

8

dist/src/chaincode.errors.d.ts

@@ -16,1 +16,9 @@ import { BaseError } from './base.error';

}
export declare class ChaincodeInvalidTransientError extends BaseError {
original: Error;
value: any;
code: string;
description: string;
explanation: string;
constructor(original: Error, value: any);
}

@@ -34,2 +34,17 @@ "use strict";

exports.ChaincodeInvokationError = ChaincodeInvokationError;
var ChaincodeInvalidTransientError = (function (_super) {
tslib_1.__extends(ChaincodeInvalidTransientError, _super);
function ChaincodeInvalidTransientError(original, value) {
var _this = _super.call(this) || this;
_this.original = original;
_this.value = value;
_this.code = 'CC_INV_TRANS_ERR';
_this.description = 'Invalid transient value for function';
_this.explanation = "\n There was an error while trying to parse the transient data using value " + _this.value + "\n " + common_1.chaincodeSideMessage;
_this.message = _super.prototype.getMessage.call(_this, _super.prototype.getOriginal.call(_this));
return _this;
}
return ChaincodeInvalidTransientError;
}(base_error_1.BaseError));
exports.ChaincodeInvalidTransientError = ChaincodeInvalidTransientError;
//# sourceMappingURL=chaincode.errors.js.map

7

package.json
{
"name": "@worldsibu/convector-core-errors",
"version": "1.2.1-0-alpha.38c096fa",
"version": "1.2.1-0-alpha.3ee6f147",
"description": "Convector Errors",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/hyperledger-labs/convector/tree/develop/%40worldsibu/convector-core-errors"
},
"homepage": "https://worldsibu.tech/convector/convector-smart-contracts/",
"main": "./dist/src/index.js",

@@ -7,0 +12,0 @@ "typings": "./dist/src/index.d.ts",

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc