- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for getContentException (0.53 sec)
-
src/main/java/org/codelibs/curl/CurlResponse.java
} /** * Gets the exception that occurred while accessing the content, if any. * * @return the exception, or null if no exception occurred. */ public Exception getContentException() { return contentException; } /** * Sets the headers for the response. * * @param headers the headers to set. */Registered: Sat Dec 20 09:13:53 UTC 2025 - Last Modified: Mon Nov 24 03:10:07 UTC 2025 - 7K bytes - Viewed (0) -
src/test/java/org/codelibs/curl/CurlResponseTest.java
CurlResponse response = new CurlResponse(); Exception exception = new IOException("Test exception"); response.setContentException(exception); assertSame(exception, response.getContentException()); } @Test public void testHeaders() { CurlResponse response = new CurlResponse(); Map<String, List<String>> headers = new HashMap<>();
Registered: Sat Dec 20 09:13:53 UTC 2025 - Last Modified: Thu Nov 20 13:34:13 UTC 2025 - 12.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/client/SearchEngineClient.java
logger.info("Register {} to {}", path, index); } else if (response.getContentException() != null) { logger.warn("Invalid request for {}.", path, response.getContentException()); } else { logger.warn("Invalid request for {}. The response is {}", path, response.getContentAsString());
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 122.4K bytes - Viewed (1)