Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for ABORTED (0.04 seconds)

  1. src/main/java/org/codelibs/fess/exception/DataStoreCrawlingException.java

         */
        public String getUrl() {
            return url;
        }
    
        /**
         * Checks whether the crawling process should be aborted due to this exception.
         *
         * @return true if the crawling should be aborted, false otherwise
         */
        public boolean aborted() {
            return abort;
        }
    Created: Sat Dec 20 09:19:18 GMT 2025
    - Last Modified: Wed Nov 19 08:04:23 GMT 2025
    - 2.7K bytes
    - Click Count (0)
  2. docs/en/docs/reference/exceptions.md

    # Exceptions - `HTTPException` and `WebSocketException`
    
    These are the exceptions that you can raise to show errors to the client.
    
    When you raise an exception, as would happen with normal Python, the rest of the execution is aborted. This way you can raise these exceptions from anywhere in the code to abort a request and show the error to the client.
    
    You can use:
    
    * `HTTPException`
    * `WebSocketException`
    
    Created: Sun Dec 28 07:19:09 GMT 2025
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 597 bytes
    - Click Count (0)
Back to Top