aave-protocol-v2/contracts/protocol/libraries/helpers/StaticATokenErrors.sol
2021-10-14 13:58:41 +01:00

14 lines
503 B
Solidity

// SPDX-License-Identifier: agpl-3.0
pragma solidity 0.6.12;
library StaticATokenErrors {
string public constant INVALID_OWNER = '1';
string public constant INVALID_EXPIRATION = '2';
string public constant INVALID_SIGNATURE = '3';
string public constant INVALID_DEPOSITOR = '4';
string public constant INVALID_RECIPIENT = '5';
string public constant INVALID_CLAIMER = '6';
string public constant ONLY_ONE_AMOUNT_FORMAT_ALLOWED = '7';
string public constant ONLY_PROXY_MAY_CALL = '8';
}