Files
ReactionSystemsGUI/egui_node_graph2/src/error.rs
2025-10-17 21:42:41 +02:00

11 lines
271 B
Rust

use super::*;
#[derive(Debug, thiserror::Error)]
pub enum EguiGraphError {
#[error("Node {0:?} has no parameter named {1}")]
NoParameterNamed(NodeId, String),
#[error("Parameter {0:?} was not found in the graph.")]
InvalidParameterId(AnyParameterId),
}