devol_accounts_kit/
dvl_off_chain_error.rs

1use thiserror::Error;
2
3#[derive(Error, Debug)]
4pub enum DvlOffChainError {
5    #[error("The option basket cannot contain more than four positions")]
6    BasketTooLarge,
7}