@cryptovarna/tronbox
Version:
TronBox - Simple development framework for Tron
1 lines • 371 B
JavaScript
;var colors=require("colors");var TruffleError=require("@truffle/error");var inherits=require("util").inherits;inherits(DeployError,TruffleError);function DeployError(message,contract_name){message="Error deploying "+contract_name+":\n\n"+message+"\n\n"+colors.red("Deploy failed. See above.");DeployError.super_.call(this,message)}module.exports=DeployError;