packages/contracts-rfq/contracts/libs/Errors.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;
error DeadlineExceeded();
error DeadlineNotExceeded();
error DeadlineTooShort();
error InsufficientOutputAmount();
error MsgValueIncorrect();
error PoolNotFound();
error TokenAddressMismatch();
error TokenNotContract();
error TokenNotETH();
error TokensIdentical();
error ChainIncorrect();
error AmountIncorrect();
error ZeroAddress();
error DisputePeriodNotPassed();
error DisputePeriodPassed();
error SenderIncorrect();
error StatusIncorrect();
error TransactionIdIncorrect();
error TransactionRelayed();