1
2
3
4
5
6
7
8
9
10
// Copyright (C) 2020 Stephane Raux. Distributed under the MIT license.

use std::io;
use thiserror::Error;

#[derive(Debug, Error)]
pub enum Error {
    #[error("Failed to get current working directory")]
    GettingPwdFailed(#[source] io::Error),
}