aboutsummaryrefslogtreecommitdiffstats
path: root/src/error.rs
blob: 5b836de9adf60bf7e6c8bda2821edf25d07fd0f8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
#[derive(thiserror::Error, Debug)]
pub enum Error {
    #[error("error creating pty")]
    CreatePtyMaster(#[from] nix::Error),

    #[error("error creating pty")]
    CreatePtySlave(#[from] std::io::Error),
}

pub type Result<T> = std::result::Result<T, Error>;