10 lines
218 B
Rust
10 lines
218 B
Rust
use thiserror::Error;
|
|
|
|
#[derive(Debug, Error, Eq, PartialEq, Clone)]
|
|
#[non_exhaustive]
|
|
/// Errors returned from taskchampion operations
|
|
pub enum Error {
|
|
#[error("Task Database Error: {0}")]
|
|
Database(String),
|
|
}
|