{
    "Function": "constructor",
    "File": "src/mcag-contracts/MCAGAggregator.sol",
    "Parent Contracts": [
        "src/mcag-contracts/interfaces/MCAGAggregatorInterface.sol"
    ],
    "High-Level Calls": [],
    "Internal Calls": [
        "revert CANNOT_SET_TO_ADDRESS_ZERO()"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "constructor(string memory description_, int256 maxAnswer_, IAccessControl _accessController) {\n        if (address(_accessController) == address(0)) {\n            revert Errors.CANNOT_SET_TO_ADDRESS_ZERO();\n        }\n        _description = description_;\n        _maxAnswer = maxAnswer_;\n        accessController = _accessController;\n\n        emit AccessControllerSet(address(_accessController));\n        emit MaxAnswerSet(0, maxAnswer_);\n    }"
}