1use crate::records::parse_errors::ParseErrors; 2 3impl ParseErrors { 4 pub fn what(&self) -> &str { 5 &self.message 6 } 7}