// SPDX-License-Identifier: MIT pragma solidity ^0.8.20; /// @title ErrorsLib /// @author Morpho Labs /// @custom:contact security@morpho.org /// @notice Library exposing error messages. library ErrorsLib { /// @dev Thrown when passing the zero address. string internal constant ZERO_ADDRESS = "zero address"; /// @dev Thrown when the caller is not Morpho. string internal constant NOT_MORPHO = "not Morpho"; }