Files
ReactionSystemsGUI/egui_node_graph2/src/error.rs

11 lines
271 B
Rust
Raw Normal View History

2025-10-17 21:42:41 +02:00
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),
}