Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for isErrorEnabled (0.11 sec)

  1. fess-crawler/src/main/java/org/codelibs/fess/crawler/exception/CrawlingAccessException.java

     * </p>
     *
     * <p>
     * Example usage:
     * </p>
     *
     * <pre>
     * try {
     *     // Attempt to access a resource
     * } catch (CrawlingAccessException e) {
     *     if (e.isErrorEnabled()) {
     *         // Log the error
     *     }
     * }
     * </pre>
     */
    public class CrawlingAccessException extends CrawlerSystemException {
    
        private static final long serialVersionUID = 1L;
    
        /**
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Sun Jul 06 02:13:03 UTC 2025
    - 3.8K bytes
    - Viewed (0)
  2. api/maven-api-core/src/main/java/org/apache/maven/api/plugin/Log.java

        void warn(Supplier<String> content);
    
        void warn(Supplier<String> content, Throwable error);
    
        /**
         * {@return true if the <b>error</b> error level is enabled}
         */
        boolean isErrorEnabled();
    
        /**
         * Sends a message to the user in the <b>error</b> error level.
         *
         * @param content the message to log
         */
        void error(CharSequence content);
    
        /**
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Sat Sep 28 09:03:24 UTC 2024
    - 5.4K bytes
    - Viewed (0)
Back to top