mint_cli/output/
errors.rs1use thiserror::Error;
2
3#[derive(Debug, Error)]
4pub enum OutputError {
5 #[error("File error: {0}.")]
6 FileError(String),
7
8 #[error("Hex output error: {0}.")]
9 HexOutputError(String),
10
11 #[error("Block memory overlap detected: {0}")]
12 BlockOverlapError(String),
13}