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