Enum solana_sdk::instruction::InstructionError [−][src]
pub enum InstructionError {}Show 50 variants
GenericError, InvalidArgument, InvalidInstructionData, InvalidAccountData, AccountDataTooSmall, InsufficientFunds, IncorrectProgramId, MissingRequiredSignature, AccountAlreadyInitialized, UninitializedAccount, UnbalancedInstruction, ModifiedProgramId, ExternalAccountLamportSpend, ExternalAccountDataModified, ReadonlyLamportChange, ReadonlyDataModified, DuplicateAccountIndex, ExecutableModified, RentEpochModified, NotEnoughAccountKeys, AccountDataSizeChanged, AccountNotExecutable, AccountBorrowFailed, AccountBorrowOutstanding, DuplicateAccountOutOfSync, Custom(u32), InvalidError, ExecutableDataModified, ExecutableLamportChange, ExecutableAccountNotRentExempt, UnsupportedProgramId, CallDepth, MissingAccount, ReentrancyNotAllowed, MaxSeedLengthExceeded, InvalidSeeds, InvalidRealloc, ComputationalBudgetExceeded, PrivilegeEscalation, ProgramEnvironmentSetupFailure, ProgramFailedToComplete, ProgramFailedToCompile, Immutable, IncorrectAuthority, BorshIoError(String), AccountNotRentExempt, InvalidAccountOwner, ArithmeticOverflow, UnsupportedSysvar, IllegalOwner,
Expand description
Reasons the runtime might have rejected an instruction.
Variants
Deprecated! Use CustomError instead! The program instruction returned an error
The arguments provided to a program were invalid
An instruction’s data contents were invalid
An account’s data contents was invalid
An account’s data was too small
An account’s balance was too small to complete the instruction
The account did not have the expected program id
A signature was required but not found
An initialize instruction was sent to an account that has already been initialized.
An attempt to operate on an account that hasn’t been initialized.
Program’s instruction lamport balance does not equal the balance after the instruction
Program modified an account’s program id
Program spent the lamports of an account that doesn’t belong to it
Program modified the data of an account that doesn’t belong to it
Read-only account’s lamports modified
Read-only account’s data was modified
An account was referenced more than once in a single instruction
Executable bit on account changed, but shouldn’t have
Rent_epoch account changed, but shouldn’t have
The instruction expected additional account keys
A non-system program changed the size of the account data
The instruction expected an executable account
Failed to borrow a reference to account data, already borrowed
Account data has an outstanding reference after a program’s execution
The same account was multiply passed to an on-chain program’s entrypoint, but the program modified them differently. A program can only modify one instance of the account because the runtime cannot determine which changes to pick or how to merge them if both are modified
Custom(u32)
Allows on-chain programs to implement program-specific error types and see them returned by the Safecoin runtime. A program-specific error may be any type that is represented as or serialized to a u32 integer.
The return value from the program was invalid. Valid errors are either a defined builtin error value or a user-defined error in the lower 32 bits.
Executable account’s data was modified
Executable account’s lamports modified
Executable accounts must be rent exempt
Unsupported program id
Cross-program invocation call depth too deep
An account required by the instruction is missing
Cross-program invocation reentrancy not allowed for this instruction
Length of the seed is too long for address generation
Provided seeds do not result in a valid address
Failed to reallocate account data of this length
Computational budget exceeded
Cross-program invocation with unauthorized signer or writable account
Failed to create program execution environment
Program failed to complete
Program failed to compile
Account is immutable
Incorrect authority provided
BorshIoError(String)
Failed to serialize or deserialize account data
An account does not have enough lamports to be rent-exempt
Invalid account owner
Program arithmetic overflowed
Unsupported sysvar
Illegal account owner
Trait Implementations
pub fn deserialize<__D>(
__deserializer: __D
) -> Result<InstructionError, <__D as Deserializer<'de>>::Error> where
__D: Deserializer<'de>,
pub fn deserialize<__D>(
__deserializer: __D
) -> Result<InstructionError, <__D as Deserializer<'de>>::Error> where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Performs the conversion.
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
pub fn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error> where
__S: Serializer,
pub fn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error> where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
type Error = InstructionError
type Error = InstructionError
The type returned in the event of a conversion error.
pub fn try_from(
error: InstructionError
) -> Result<ProgramError, <ProgramError as TryFrom<InstructionError>>::Error>
pub fn try_from(
error: InstructionError
) -> Result<ProgramError, <ProgramError as TryFrom<InstructionError>>::Error>
Performs the conversion.
Auto Trait Implementations
impl RefUnwindSafe for InstructionError
impl Send for InstructionError
impl Sync for InstructionError
impl Unpin for InstructionError
impl UnwindSafe for InstructionError
Blanket Implementations
pub default fn visit_for_abi(
&self,
digester: &mut AbiDigester
) -> Result<AbiDigester, DigestError>
pub default fn visit_for_abi(
&self,
_digester: &mut AbiDigester
) -> Result<AbiDigester, DigestError>
pub fn as_fail(&self) -> &(dyn Fail + 'static)
pub fn as_fail(&self) -> &(dyn Fail + 'static)
Converts a reference to Self
into a dynamic trait object of Fail
.
Mutably borrows from an owned value. Read more
type Output = T
type Output = T
Should always be Self