1use thiserror::Error; 2 3#[derive(Error, Debug)] 4pub enum LoaderError { 5 #[error("File not found: '{0}'")] 6 FileNotFound(String), 7 #[error("Compilation error: '{0}'")] 8 CompilationError(String), 9}