sugar_cli/verify/
errors.rs

1use thiserror::Error;
2
3#[derive(Error, Debug)]
4pub enum VerifyError {
5    #[error("Failed to get candy machine account data from Miraland for address: {0}.")]
6    FailedToGetAccountData(String),
7    #[error("{0} mismatch (expected='{1}', found='{2}')")]
8    Mismatch(String, String, String),
9}