Error raised when a tool cannot be created.
| 40 | |
| 41 | |
| 42 | class LettaToolCreateError(LettaError): |
| 43 | """Error raised when a tool cannot be created.""" |
| 44 | |
| 45 | default_error_message = "Error creating tool." |
| 46 | |
| 47 | def __init__(self, message=None): |
| 48 | super().__init__(message=message or self.default_error_message) |
| 49 | |
| 50 | |
| 51 | class LettaConfigurationError(LettaError): |
no outgoing calls
no test coverage detected