orch/execution/
builder.rs

1use thiserror::Error;
2
3#[derive(Debug, Error)]
4pub enum ExecutorBuilderError {
5    #[error("Internal error: {0}")]
6    InternalError(String),
7    #[error("{0} is not set")]
8    ConfigurationNotSet(String),
9}