mirror of
https://github.com/Instadapp/fluid-contracts-public.git
synced 2024-07-29 21:57:37 +00:00
10 lines
292 B
Solidity
10 lines
292 B
Solidity
// SPDX-License-Identifier: BUSL-1.1
|
|
pragma solidity 0.8.21;
|
|
|
|
contract Error {
|
|
error FluidVaultError(uint256 errorId_);
|
|
|
|
/// @notice used to simulate liquidation to find the maximum liquidatable amounts
|
|
error FluidLiquidateResult(uint256 colLiquidated, uint256 debtLiquidated);
|
|
}
|