mirror of
https://github.com/logos-blockchain/lssa.git
synced 2026-01-03 05:43:08 +00:00
13 lines
223 B
Rust
13 lines
223 B
Rust
use std::io;
|
|
|
|
use thiserror::Error;
|
|
|
|
#[derive(Error, Debug)]
|
|
pub enum NssaCoreError {
|
|
#[error("Deserialization error: {0}")]
|
|
DeserializationError(String),
|
|
|
|
#[error("IO error: {0}")]
|
|
Io(#[from] io::Error),
|
|
}
|