use candid::CandidType;
use serde::{Deserialize, Serialize};
#[derive(Debug, Clone, CandidType, Serialize, Deserialize, Eq, PartialEq)]
pub enum ParsedCandidError {
Common(String),
EmptyRecRecords,
RecRecordRepeated(String),
RecRecordNotExist(String),
MissingType(String),
WrongComment(String),
ParsedError(String),
}