1use thiserror::Error; 2 3#[derive(Error, Debug)] 4pub enum DeployError { 5 #[error("[deploy] section is incorrect in Cargo.toml")] 6 ConfigIncorrect, 7}