1 2 3 4 5 6 7 8
use crate::blueprint::BlueprintError; use thiserror::Error; #[derive(Debug, Error)] pub enum BuildError { #[error("Blueprint error: {0}")] BlueprintError(#[from] BlueprintError), }