{
    "Function": "tryCatch",
    "File": "contracts/Identity.sol",
    "Parent Contracts": [],
    "High-Level Calls": [],
    "Internal Calls": [
        "require(bool,string)",
        "gasleft()"
    ],
    "Library Calls": [],
    "Low-Level Calls": [
        "call"
    ],
    "Code": "function tryCatch(address to, uint value, bytes calldata data)\n\t\texternal\n\t{\n\t\trequire(msg.sender == address(this), 'ONLY_IDENTITY_CAN_CALL');\n\t\t(bool success, bytes memory returnData) = to.call{value: value, gas: gasleft()}(data);\n\t\tif (!success) emit LogErr(to, value, data, returnData);\n\t}"
}