1use thiserror::Error;
2
3#[derive(Debug, Error)]
4pub enum HelmError {
5 #[error("manifest not found: {0}")]
6 ManifestNotFound(std::path::PathBuf),
7 #[error("other: {0}")]
8 Other(String),
9}
10
11pub type Result<T> = std::result::Result<T, HelmError>;