Base exception class for my_package errors.
| 1 | # ADC LLMs Exceptions |
| 2 | class LLMError(Exception): |
| 3 | """Base exception class for my_package errors.""" |
| 4 | |
| 5 | ... |
| 6 | |
| 7 | |
| 8 | class FunctionCallDeprecationError(LLMError): |
nothing calls this directly
no outgoing calls
no test coverage detected