use crate::service::serivce_error::ServiceError;
#[derive(Debug)]
pub enum BrainError {
InvalidServiceIndex(u8, usize),
UnsupportedSericeIndex(&'static str),
InvalidServiceClass,
NotSupportedServiceClass,
WrongPacketType,
ServiceError(ServiceError),
}