1use thiserror::Error; 2 3#[derive(Error, Debug)] 4pub enum VMFError { 5 #[error("Failed to parse VMF: {0}")] 6 ParseError(String), 7}