You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
697 B
26 lines
697 B
// SPDX-License-Identifier: MIT
|
|
|
|
pragma solidity ^0.8.20;
|
|
|
|
/**
|
|
* @dev Collection of common custom errors used in multiple contracts
|
|
*
|
|
* IMPORTANT: Backwards compatibility is not guaranteed in future versions of the library.
|
|
* It is recommended to avoid relying on the error API for critical functionality.
|
|
*/
|
|
library Errors {
|
|
/**
|
|
* @dev The ETH balance of the account is not enough to perform the operation.
|
|
*/
|
|
error InsufficientBalance(uint256 balance, uint256 needed);
|
|
|
|
/**
|
|
* @dev A call to an address target failed. The target may have reverted.
|
|
*/
|
|
error FailedCall();
|
|
|
|
/**
|
|
* @dev The deployment failed.
|
|
*/
|
|
error FailedDeployment();
|
|
}
|
|
|