> For the complete documentation index, see [llms.txt](https://developers.polymath.network/polymesh-sdk-api-reference/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://developers.polymath.network/polymesh-sdk-api-reference/docs-v6/enums/transfererror.md).

# TransferError

Akin to TransferStatus, these are a bit more granular and specific. Every TransferError translates to a [TransferStatus](/polymesh-sdk-api-reference/docs-v6/enums/transferstatus.md), but two or more TransferErrors can represent the same TransferStatus, and not all Transfer Statuses are represented by a TransferError

## Index

### Enumeration members

* [InsufficientBalance](/polymesh-sdk-api-reference/docs-v6/enums/transfererror.md#insufficientbalance)
* [InsufficientPortfolioBalance](/polymesh-sdk-api-reference/docs-v6/enums/transfererror.md#insufficientportfoliobalance)
* [InvalidGranularity](/polymesh-sdk-api-reference/docs-v6/enums/transfererror.md#invalidgranularity)
* [InvalidReceiverCdd](/polymesh-sdk-api-reference/docs-v6/enums/transfererror.md#invalidreceivercdd)
* [InvalidReceiverPortfolio](/polymesh-sdk-api-reference/docs-v6/enums/transfererror.md#invalidreceiverportfolio)
* [InvalidSenderCdd](/polymesh-sdk-api-reference/docs-v6/enums/transfererror.md#invalidsendercdd)
* [InvalidSenderPortfolio](/polymesh-sdk-api-reference/docs-v6/enums/transfererror.md#invalidsenderportfolio)
* [ScopeClaimMissing](/polymesh-sdk-api-reference/docs-v6/enums/transfererror.md#scopeclaimmissing)
* [SelfTransfer](/polymesh-sdk-api-reference/docs-v6/enums/transfererror.md#selftransfer)
* [TransfersFrozen](/polymesh-sdk-api-reference/docs-v6/enums/transfererror.md#transfersfrozen)

## Enumeration members

### InsufficientBalance

• **InsufficientBalance**: = "InsufficientBalance"

*Defined in* [*src/types/index.ts:530*](https://github.com/PolymathNetwork/polymesh-sdk/blob/23062de4/src/types/index.ts#L530)

translates to TransferStatus.InsufficientBalance

occurs if the sender Identity does not have enough balance to cover the amount

### InsufficientPortfolioBalance

• **InsufficientPortfolioBalance**: = "InsufficientPortfolioBalance"

*Defined in* [*src/types/index.ts:554*](https://github.com/PolymathNetwork/polymesh-sdk/blob/23062de4/src/types/index.ts#L554)

translates to TransferStatus.PortfolioFailure

occurs if the sender Portfolio does not have enough balance to cover the amount

### InvalidGranularity

• **InvalidGranularity**: = "InvalidGranularity"

*Defined in* [*src/types/index.ts:499*](https://github.com/PolymathNetwork/polymesh-sdk/blob/23062de4/src/types/index.ts#L499)

translates to TransferStatus.InvalidGranularity

occurs if attempting to transfer decimal amounts of a non-divisible token

### InvalidReceiverCdd

• **InvalidReceiverCdd**: = "InvalidReceiverCdd"

*Defined in* [*src/types/index.ts:511*](https://github.com/PolymathNetwork/polymesh-sdk/blob/23062de4/src/types/index.ts#L511)

translates to TransferStatus.InvalidReceiverIdentity

occurs if the receiver Identity doesn't have a valid CDD claim

### InvalidReceiverPortfolio

• **InvalidReceiverPortfolio**: = "InvalidReceiverPortfolio"

*Defined in* [*src/types/index.ts:548*](https://github.com/PolymathNetwork/polymesh-sdk/blob/23062de4/src/types/index.ts#L548)

translates to TransferStatus.PortfolioFailure

occurs if the receiver Portfolio doesn't exist

### InvalidSenderCdd

• **InvalidSenderCdd**: = "InvalidSenderCdd"

*Defined in* [*src/types/index.ts:517*](https://github.com/PolymathNetwork/polymesh-sdk/blob/23062de4/src/types/index.ts#L517)

translates to TransferStatus.InvalidSenderIdentity

occurs if the receiver Identity doesn't have a valid CDD claim

### InvalidSenderPortfolio

• **InvalidSenderPortfolio**: = "InvalidSenderPortfolio"

*Defined in* [*src/types/index.ts:542*](https://github.com/PolymathNetwork/polymesh-sdk/blob/23062de4/src/types/index.ts#L542)

translates to TransferStatus.PortfolioFailure

occurs if the sender Portfolio doesn't exist

### ScopeClaimMissing

• **ScopeClaimMissing**: = "ScopeClaimMissing"

*Defined in* [*src/types/index.ts:524*](https://github.com/PolymathNetwork/polymesh-sdk/blob/23062de4/src/types/index.ts#L524)

translates to TransferStatus.ScopeClaimMissing

occurs if one of the participants doesn't have a valid Investor Uniqueness Claim for the Security Token

### SelfTransfer

• **SelfTransfer**: = "SelfTransfer"

*Defined in* [*src/types/index.ts:505*](https://github.com/PolymathNetwork/polymesh-sdk/blob/23062de4/src/types/index.ts#L505)

translates to TransferStatus.InvalidReceiverIdentity

occurs if the origin and destination Identities are the same

### TransfersFrozen

• **TransfersFrozen**: = "TransfersFrozen"

*Defined in* [*src/types/index.ts:536*](https://github.com/PolymathNetwork/polymesh-sdk/blob/23062de4/src/types/index.ts#L536)

translates to TransferStatus.TransfersHalted

occurs if the Security Token's transfers are frozen
