Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getContentException (0.96 sec)

  1. 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)
  2. 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)
Back to top