1use thiserror::Error; 2 3#[derive(Error, Debug)] 4pub enum InvalidEmailError { 5 #[error("Parse error")] 6 ParseError 7}