alixt_table/
lib.rs

1pub mod table;
2
3use thiserror::Error;
4
5
6#[derive(Error, Debug)]
7pub enum TableError {
8    #[error("IO Error: {0}")]
9    Io(#[from] std::io::Error),
10
11    #[error("Table Input Error: {0}")]
12    InputError(String),
13}