mirror of
https://github.com/logos-blockchain/logos-execution-zone.git
synced 2026-03-25 11:43:06 +00:00
13 lines
221 B
Rust
13 lines
221 B
Rust
|
|
use std::io;
|
||
|
|
|
||
|
|
use thiserror::Error;
|
||
|
|
|
||
|
|
#[derive(Error, Debug)]
|
||
|
|
pub enum NssaCoreError {
|
||
|
|
#[error("Invalid transaction: {0}")]
|
||
|
|
DeserializationError(String),
|
||
|
|
|
||
|
|
#[error("IO error: {0}")]
|
||
|
|
Io(#[from] io::Error),
|
||
|
|
}
|