{
    "Function": "_onTargetExecutionFailed",
    "File": "contracts/interchain-governance-executor/test/TestProposalExecutor.sol",
    "Parent Contracts": [
        "contracts/interchain-governance-executor/InterchainProposalExecutor.sol",
        "node_modules/@openzeppelin/contracts/access/Ownable.sol",
        "node_modules/@openzeppelin/contracts/utils/Context.sol",
        "contracts/gmp-sdk/executable/AxelarExecutable.sol",
        "contracts/gmp-sdk/interfaces/IAxelarExecutable.sol",
        "contracts/interchain-governance-executor/interfaces/IInterchainProposalExecutor.sol"
    ],
    "High-Level Calls": [],
    "Internal Calls": [
        "mload(uint256)",
        "revert(uint256,uint256)",
        "revert ProposalExecuteFailed()"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function _onTargetExecutionFailed(InterchainCalls.Call memory, bytes memory result) internal pure override {\n        // You can add your own logic here to handle the failure of the target contract execution. The code below is just an example.\n        if (result.length > 0) {\n            // The failure data is a revert reason string.\n            assembly {\n                revert(add(32, result), mload(result))\n            }\n        } else {\n            // There is no failure data, just revert with no reason.\n            revert ProposalExecuteFailed();\n        }\n    }"
}