1
2
3
4
5
6
7
8
#[derive(thiserror::Error, Debug, Clone)]
#[allow(missing_copy_implementations)]
/// Crate error.
pub enum Error {
  /// Failed to get current working directory
  #[error("Failed to get current working directory")]
  Pwd,
}