mirror of
https://github.com/lens-protocol/core.git
synced 2026-01-11 15:18:08 -05:00
17 lines
366 B
Solidity
17 lines
366 B
Solidity
// SPDX-License-Identifier: MIT
|
|
|
|
pragma solidity >=0.6.0;
|
|
|
|
library Errors {
|
|
error FollowInvalid();
|
|
error ModuleDataMismatch();
|
|
error NotHub();
|
|
error InitParamsInvalid();
|
|
error InvalidParams();
|
|
error MintLimitExceeded();
|
|
error CollectExpired();
|
|
error NotActionModule();
|
|
error CollectNotAllowed();
|
|
error AlreadyInitialized();
|
|
}
|