use thiserror::Error;
#[derive(Error, Debug)]
pub enum AttributeDecodeError {
#[error("Error reading field value.")]
ReadFailure(#[from] std::io::Error),
#[error("Failed to convert byte sequence into a UTF-8 string.")]
InvalidString(#[from] std::string::FromUtf8Error),
#[error("Not enough data.")]
InsufficientData(),
#[error("Invalid field value: {0}.")]
InvalidValue(u128),
#[error("Unrecognized attribute type value: {attr_type:?}.")]
UnrecognizedAttributeType {
attr_type: u16,
},
}
#[derive(Error, Debug)]
pub enum AttributeEncodeError {
#[error("Error writing field value.")]
WriteFailure(#[from] std::io::Error),
#[error("UTF-8 value too big. Limit: {limit}, current length: {length}.")]
Utf8ValueTooBig {
limit: usize,
length: usize,
},
}