Create a new configuration error
(message: impl Into<String>)
| 138 | impl GraphBitError { |
| 139 | /// Create a new configuration error |
| 140 | pub fn config(message: impl Into<String>) -> Self { |
| 141 | Self::Configuration { |
| 142 | message: message.into(), |
| 143 | } |
| 144 | } |
| 145 | |
| 146 | /// Create a new LLM provider error |
| 147 | pub fn llm_provider(provider: impl Into<String>, message: impl Into<String>) -> Self { |
no outgoing calls
no test coverage detected