1
2
3
4
5
6
7
8
9
10
11
12
13
use thiserror::Error;

#[derive(Error, Debug)]
pub enum AxlError {
    #[error("could not find any sessions to choose from")]
    NoSessionsFound,

    #[error("no project was selected from the list, cannot proceed")]
    NoProjectSelected,

    #[error("provided config path does not exist")]
    ConfigPathDoesNotExist,
}