reactive_graph_reactive_model_api/error/
flows.rs

1use thiserror::Error;
2use uuid::Uuid;
3
4#[derive(Debug, Error)]
5pub enum ReactiveFlowConstructionError {
6    #[error("Missing the wrapper entity instance. Check if an entity instance exists with the same id as the flow id")]
7    MissingWrapperInstance,
8    #[error("The outbound entity instance {0} cannot be found")]
9    MissingOutboundEntityInstance(Uuid),
10    #[error("The inbound entity instance {0} cannot be found")]
11    MissingInboundEntityInstance(Uuid),
12}