mirror of
https://github.com/Instadapp/aave-protocol-v2.git
synced 2024-07-29 21:47:30 +00:00
12 lines
403 B
Solidity
12 lines
403 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 ONLY_ONE_AMOUNT_FORMAT_ALLOWED = '6';
|
|
}
|