> For the complete documentation index, see [llms.txt](https://docs.inverter.network/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.inverter.network/contracts/technical-reference/external/reverter/inverterreverter_v1.sol.md).

# InverterReverter\_v1.sol

[Git Source](https://github.com/InverterNetwork/inverter-contracts/blob/2a8a4c80ff4f24a59546d4e6126b81bc51228c94/src/external/reverter/InverterReverter_v1.sol)

**Author:** Inverter Network

Enables the Inverter beacon structure to return a predefined error message in case a paused contract is called.

*Reverts all transactions with a predefined error*

### Functions

#### fallback

```solidity
fallback() external;
```

### Errors

#### InverterReverter\_\_ContractPaused

The contract that the transactions was meant to interact with is paused.

```solidity
error InverterReverter__ContractPaused();
```
