error.rs 239 B

12345678910
  1. use steel::*;
  2. #[derive(Debug, Error, Clone, Copy, PartialEq, Eq, IntoPrimitive)]
  3. #[repr(u32)]
  4. pub enum PdaRentPayerError {
  5. #[error("Rent vault account already initialized")]
  6. RentVaultInitialized = 0,
  7. }
  8. error!(PdaRentPayerError);