Enum switchboard_solana::prelude::error::ErrorCode
#[repr(u32)]pub enum ErrorCode {
Show 60 variants
InstructionMissing = 100,
InstructionFallbackNotFound = 101,
InstructionDidNotDeserialize = 102,
InstructionDidNotSerialize = 103,
IdlInstructionStub = 1_000,
IdlInstructionInvalidProgram = 1001,
IdlAccountNotEmpty = 1002,
EventInstructionStub = 1_500,
ConstraintMut = 2_000,
ConstraintHasOne = 2001,
ConstraintSigner = 2002,
ConstraintRaw = 2003,
ConstraintOwner = 2004,
ConstraintRentExempt = 2005,
ConstraintSeeds = 2006,
ConstraintExecutable = 2007,
ConstraintState = 2008,
ConstraintAssociated = 2009,
ConstraintAssociatedInit = 2010,
ConstraintClose = 2011,
ConstraintAddress = 2012,
ConstraintZero = 2013,
ConstraintTokenMint = 2014,
ConstraintTokenOwner = 2015,
ConstraintMintMintAuthority = 2016,
ConstraintMintFreezeAuthority = 2017,
ConstraintMintDecimals = 2018,
ConstraintSpace = 2019,
ConstraintAccountIsNone = 2020,
ConstraintTokenTokenProgram = 2021,
ConstraintMintTokenProgram = 2022,
ConstraintAssociatedTokenTokenProgram = 2023,
RequireViolated = 2_500,
RequireEqViolated = 2501,
RequireKeysEqViolated = 2502,
RequireNeqViolated = 2503,
RequireKeysNeqViolated = 2504,
RequireGtViolated = 2505,
RequireGteViolated = 2506,
AccountDiscriminatorAlreadySet = 3_000,
AccountDiscriminatorNotFound = 3001,
AccountDiscriminatorMismatch = 3002,
AccountDidNotDeserialize = 3003,
AccountDidNotSerialize = 3004,
AccountNotEnoughKeys = 3005,
AccountNotMutable = 3006,
AccountOwnedByWrongProgram = 3007,
InvalidProgramId = 3008,
InvalidProgramExecutable = 3009,
AccountNotSigner = 3010,
AccountNotSystemOwned = 3011,
AccountNotInitialized = 3012,
AccountNotProgramData = 3013,
AccountNotAssociatedTokenAccount = 3014,
AccountSysvarMismatch = 3015,
AccountReallocExceedsLimit = 3016,
AccountDuplicateReallocs = 3017,
DeclaredProgramIdMismatch = 4_100,
TryingToInitPayerAsProgramAccount = 4_101,
Deprecated = 5_000,
}
Expand description
Error codes that can be returned by internal framework code.
- >= 100 Instruction error codes
- >= 1000 IDL error codes
- >= 2000 constraint error codes
- >= 3000 account error codes
- >= 4100 misc error codes
- = 5000 deprecated error code
The starting point for user-defined errors is defined by the ERROR_CODE_OFFSET.
Variants§
InstructionMissing = 100
100 - 8 byte instruction identifier not provided
InstructionFallbackNotFound = 101
101 - Fallback functions are not supported
InstructionDidNotDeserialize = 102
102 - The program could not deserialize the given instruction
InstructionDidNotSerialize = 103
103 - The program could not serialize the given instruction
IdlInstructionStub = 1_000
1000 - The program was compiled without idl instructions
IdlInstructionInvalidProgram = 1001
1001 - Invalid program given to the IDL instruction
IdlAccountNotEmpty = 1002
1002 - IDL Account must be empty in order to resize
EventInstructionStub = 1_500
1500 - The program was compiled without event-cpi
feature
ConstraintMut = 2_000
2000 - A mut constraint was violated
ConstraintHasOne = 2001
2001 - A has one constraint was violated
ConstraintSigner = 2002
2002 - A signer constraint was violated
ConstraintRaw = 2003
2003 - A raw constraint was violated
ConstraintOwner = 2004
2004 - An owner constraint was violated
ConstraintRentExempt = 2005
2005 - A rent exemption constraint was violated
ConstraintSeeds = 2006
2006 - A seeds constraint was violated
ConstraintExecutable = 2007
2007 - An executable constraint was violated
ConstraintState = 2008
2008 - Deprecated Error, feel free to replace with something else
ConstraintAssociated = 2009
2009 - An associated constraint was violated
ConstraintAssociatedInit = 2010
2010 - An associated init constraint was violated
ConstraintClose = 2011
2011 - A close constraint was violated
ConstraintAddress = 2012
2012 - An address constraint was violated
ConstraintZero = 2013
2013 - Expected zero account discriminant
ConstraintTokenMint = 2014
2014 - A token mint constraint was violated
ConstraintTokenOwner = 2015
2015 - A token owner constraint was violated
ConstraintMintMintAuthority = 2016
The mint mint is intentional -> a mint authority for the mint.
2016 - A mint mint authority constraint was violated
ConstraintMintFreezeAuthority = 2017
2017 - A mint freeze authority constraint was violated
ConstraintMintDecimals = 2018
2018 - A mint decimals constraint was violated
ConstraintSpace = 2019
2019 - A space constraint was violated
ConstraintAccountIsNone = 2020
2020 - A required account for the constraint is None
ConstraintTokenTokenProgram = 2021
The token token is intentional -> a token program for the token account.
2021 - A token account token program constraint was violated
ConstraintMintTokenProgram = 2022
2022 - A mint token program constraint was violated
ConstraintAssociatedTokenTokenProgram = 2023
2023 - A mint token program constraint was violated
RequireViolated = 2_500
2500 - A require expression was violated
RequireEqViolated = 2501
2501 - A require_eq expression was violated
RequireKeysEqViolated = 2502
2502 - A require_keys_eq expression was violated
RequireNeqViolated = 2503
2503 - A require_neq expression was violated
RequireKeysNeqViolated = 2504
2504 - A require_keys_neq expression was violated
RequireGtViolated = 2505
2505 - A require_gt expression was violated
RequireGteViolated = 2506
2506 - A require_gte expression was violated
AccountDiscriminatorAlreadySet = 3_000
3000 - The account discriminator was already set on this account
AccountDiscriminatorNotFound = 3001
3001 - No 8 byte discriminator was found on the account
AccountDiscriminatorMismatch = 3002
3002 - 8 byte discriminator did not match what was expected
AccountDidNotDeserialize = 3003
3003 - Failed to deserialize the account
AccountDidNotSerialize = 3004
3004 - Failed to serialize the account
AccountNotEnoughKeys = 3005
3005 - Not enough account keys given to the instruction
AccountNotMutable = 3006
3006 - The given account is not mutable
AccountOwnedByWrongProgram = 3007
3007 - The given account is owned by a different program than expected
InvalidProgramId = 3008
3008 - Program ID was not as expected
InvalidProgramExecutable = 3009
3009 - Program account is not executable
AccountNotSigner = 3010
3010 - The given account did not sign
AccountNotSystemOwned = 3011
3011 - The given account is not owned by the system program
AccountNotInitialized = 3012
3012 - The program expected this account to be already initialized
AccountNotProgramData = 3013
3013 - The given account is not a program data account
AccountNotAssociatedTokenAccount = 3014
3014 - The given account is not the associated token account
AccountSysvarMismatch = 3015
3015 - The given public key does not match the required sysvar
AccountReallocExceedsLimit = 3016
3016 - The account reallocation exceeds the MAX_PERMITTED_DATA_INCREASE limit
AccountDuplicateReallocs = 3017
3017 - The account was duplicated for more than one reallocation
DeclaredProgramIdMismatch = 4_100
4100 - The declared program id does not match actual program id
TryingToInitPayerAsProgramAccount = 4_101
4101 - You cannot/should not initialize the payer account as a program account
Deprecated = 5_000
5000 - The API being used is deprecated and should no longer be used