1//! Contains the custom mapm error type 2 3pub type MapmResult<T> = Result<T, MapmErr>; 4 5#[derive(Debug)] 6pub enum MapmErr { 7 ProblemErr(String), 8 SolutionErr(String), 9 ContestErr(String), 10 TemplateErr(String), 11}