7 lines
125 B
Rust
7 lines
125 B
Rust
use thiserror::Error;
|
|
|
|
#[derive(Debug, Error)]
|
|
enum ZError {
|
|
#[error(transparent)]
|
|
Unknown(#[from] anyhow::Error),
|
|
}
|