- Sort Score
- Num 10 results
- Language All
Results 1 - 1 of 1 for resolveErrorCode (0.08 seconds)
-
src/main/java/org/codelibs/fess/llm/AbstractLlmClient.java
/** * Resolves an HTTP status code to an LlmException error code. * * @param statusCode the HTTP status code * @return the corresponding error code */ protected String resolveErrorCode(final int statusCode) { if (statusCode == 429) { return LlmException.ERROR_RATE_LIMIT; } if (statusCode == 401 || statusCode == 403) {Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 21 06:04:58 GMT 2026 - 72K bytes - Click Count (0)