Skip to main content

stellar_token_manager/
error.rs

1use stellar_axelar_std::{contracterror, soroban_sdk};
2
3#[contracterror]
4#[derive(Copy, Clone, Debug, Eq, PartialEq)]
5#[repr(u32)]
6pub enum ContractError {
7    MigrationNotAllowed = 1,
8    MigrationInProgress = 2,
9}