egui_table_kit/error.rs
1#[derive(Debug, thiserror::Error)]
2pub enum TableError {
3 #[error("Corrupted table state")]
4 CorruptedState,
5 #[error("IO error: {0}")]
6 Io(#[from] std::io::Error),
7 #[error("Serialization/Decompression error: {0}")]
8 Deserialization(String),
9 #[error("Operation error: {0}")]
10 Operation(String),
11 #[error("Generic error: {0}")]
12 Generic(String),
13}