use super::responses::status::StatusParseError;
use crate::device::DeviceError;
use std::num::ParseIntError;
use thiserror::Error;
#[derive(Debug, Error, Clone, PartialEq, Eq)]
pub enum Error {
#[error("Node ID must be 0..=99, got '{0}'")]
IllegalNodeId(u8),
#[error("Expected '@' to be the first character")]
MissingAtSymbol,
#[error("Expected 2 characters for Node ID")]
MissingNodeId,
#[error("Failed to parse string as integer: {0}")]
IntParse(#[from] ParseIntError),
#[error("Missing header (command) code")]
MissingHeaderCode,
#[error("Unknown or unsupported command: {0}")]
UnknownCommand(String),
#[error("Expected terminator at end of command")]
MissingTerminator,
#[error("Missing FCS checksum")]
MissingFcs,
#[error("Message block has illegal characters")]
InvalidTestData,
#[error("Unknown error code: '{0}{1}'")]
UnknownErrorCode(char, char),
#[error("Invalid error code length")]
ErrorCodeBadLength,
#[error("Device error: {0}")]
Device(#[from] DeviceError),
#[error("Device error: {0}")]
StatusParse(#[from] StatusParseError),
}