User-facing error from LLM API operations. Only messages explicitly constructed for user display should be wrapped in this exception. Endpoints catch LLMApiError to show the message; all other exceptions get a generic error.
| 15 | |
| 16 | |
| 17 | class LLMApiError(Exception): |
| 18 | """User-facing error from LLM API operations. |
| 19 | |
| 20 | Only messages explicitly constructed for user display should be |
| 21 | wrapped in this exception. Endpoints catch LLMApiError to show |
| 22 | the message; all other exceptions get a generic error. |
| 23 | """ |
| 24 | pass |
| 25 | |
| 26 | |
| 27 | def _get_user_storage_dirs(): |
no outgoing calls
no test coverage detected