> For the complete documentation index, see [llms.txt](https://docs-v4.venus.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs-v4.venus.io/technical-reference/reference-isolated-pools/utility/error-reporter.md).

# ErrorReporter

This reference matches [`TokenErrorReporter` in `isolated-pools` v4.4.0](https://github.com/VenusProtocol/isolated-pools/blob/v4.4.0/contracts/ErrorReporter.sol). It defines the legacy success code and custom errors inherited by that source generation's `VToken` implementation.

{% hint style="warning" %}
Decode a revert with the ABI for the implementation behind the selected VToken beacon or proxy. Error names and selectors can differ across deployed generations; this page does not prove that every listed error is reachable at every market.
{% endhint %}

## Solidity API

### NO\_ERROR

Legacy success code retained for compatibility.

```solidity
uint256 public constant NO_ERROR = 0
```

### TransferNotAllowed

```solidity
error TransferNotAllowed()
```

### MintFreshnessCheck

```solidity
error MintFreshnessCheck()
```

### RedeemFreshnessCheck

```solidity
error RedeemFreshnessCheck()
```

### RedeemTransferOutNotPossible

```solidity
error RedeemTransferOutNotPossible()
```

### BorrowFreshnessCheck

```solidity
error BorrowFreshnessCheck()
```

### BorrowCashNotAvailable

```solidity
error BorrowCashNotAvailable()
```

### DelegateNotApproved

```solidity
error DelegateNotApproved()
```

### RepayBorrowFreshnessCheck

```solidity
error RepayBorrowFreshnessCheck()
```

### HealBorrowUnauthorized

```solidity
error HealBorrowUnauthorized()
```

### ForceLiquidateBorrowUnauthorized

```solidity
error ForceLiquidateBorrowUnauthorized()
```

### LiquidateFreshnessCheck

```solidity
error LiquidateFreshnessCheck()
```

### LiquidateCollateralFreshnessCheck

```solidity
error LiquidateCollateralFreshnessCheck()
```

### LiquidateAccrueCollateralInterestFailed

```solidity
error LiquidateAccrueCollateralInterestFailed(uint256 errorCode)
```

### LiquidateLiquidatorIsBorrower

```solidity
error LiquidateLiquidatorIsBorrower()
```

### LiquidateCloseAmountIsZero

```solidity
error LiquidateCloseAmountIsZero()
```

### LiquidateCloseAmountIsUintMax

```solidity
error LiquidateCloseAmountIsUintMax()
```

### LiquidateSeizeLiquidatorIsBorrower

```solidity
error LiquidateSeizeLiquidatorIsBorrower()
```

### ProtocolSeizeShareTooBig

```solidity
error ProtocolSeizeShareTooBig()
```

### SetReserveFactorFreshCheck

```solidity
error SetReserveFactorFreshCheck()
```

### SetReserveFactorBoundsCheck

```solidity
error SetReserveFactorBoundsCheck()
```

### AddReservesFactorFreshCheck

```solidity
error AddReservesFactorFreshCheck(uint256 actualAddAmount)
```

### ReduceReservesFreshCheck

```solidity
error ReduceReservesFreshCheck()
```

### ReduceReservesCashNotAvailable

```solidity
error ReduceReservesCashNotAvailable()
```

### ReduceReservesCashValidation

```solidity
error ReduceReservesCashValidation()
```

### SetInterestRateModelFreshCheck

```solidity
error SetInterestRateModelFreshCheck()
```


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://docs-v4.venus.io/technical-reference/reference-isolated-pools/utility/error-reporter.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
