Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,857 for constructs (0.21 sec)

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

     * It extends the RuntimeException class and provides constructors for creating exceptions with a message, a cause, or both.
     * It also provides a protected constructor that allows to specify whether or not suppression is enabled or stack trace is writable.
     */
    public class CrawlerSystemException extends RuntimeException {
    
        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
    - 3K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/util/transport/TransportException.java

    public class TransportException extends IOException {
    
        /** The root cause exception */
        private Throwable rootCause;
    
        /**
         * Constructs a new TransportException with no detail message.
         */
        public TransportException() {
        }
    
        /**
         * Constructs a new TransportException with the specified detail message.
         *
         * @param msg the detail message
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 1.8K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/suggest/exception/SuggesterException.java

        private static final long serialVersionUID = 1L;
    
        /**
         * Constructs a new SuggesterException with the specified detail message.
         * @param msg The detail message.
         */
        public SuggesterException(final String msg) {
            super(msg);
        }
    
        /**
         * Constructs a new SuggesterException with the specified cause.
         * @param cause The cause.
         */
    Registered: Fri Sep 19 09:08:11 UTC 2025
    - Last Modified: Fri Jul 04 14:00:23 UTC 2025
    - 1.9K bytes
    - Viewed (0)
  4. src/main/java/jcifs/spnego/SpnegoException.java

        /**
         *
         */
        private static final long serialVersionUID = -4591854684249021395L;
    
        /**
         * Constructs a new SpnegoException with no detail message
         */
        public SpnegoException() {
        }
    
        /**
         * Constructs a new SpnegoException with the specified detail message and cause
         * @param message the detail message
         * @param cause the cause of this exception
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 2K bytes
    - Viewed (0)
  5. src/main/java/jcifs/util/transport/RequestTimeoutException.java

        /**
         *
         */
        private static final long serialVersionUID = -8825922797594232534L;
    
        /**
         * Constructs a new RequestTimeoutException with no detail message.
         */
        public RequestTimeoutException() {
        }
    
        /**
         * Constructs a new RequestTimeoutException with the specified detail message and cause.
         *
         * @param msg the detail message
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 2K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/suggest/exception/SuggestSettingsException.java

     *
     * <p>There are three constructors available for this exception:</p>
     * <ul>
     *   <li>{@link #SuggestSettingsException(String)}: Constructs a new exception with the specified detail message.</li>
     *   <li>{@link #SuggestSettingsException(Throwable)}: Constructs a new exception with the specified cause.</li>
    Registered: Fri Sep 19 09:08:11 UTC 2025
    - Last Modified: Fri Jul 04 14:00:23 UTC 2025
    - 2.1K bytes
    - Viewed (0)
  7. src/main/java/jcifs/util/transport/ConnectionTimeoutException.java

        /**
         *
         */
        private static final long serialVersionUID = 7327198103204592731L;
    
        /**
         * Constructs a new ConnectionTimeoutException with no detail message.
         */
        public ConnectionTimeoutException() {
        }
    
        /**
         * Constructs a new ConnectionTimeoutException with the specified detail message.
         * @param msg the detail message
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 2K bytes
    - Viewed (0)
  8. fess-crawler/src/main/java/org/codelibs/fess/crawler/exception/ExtractException.java

            super(message, cause);
        }
    
        /**
         * Constructs a new ExtractException with the specified detail message.
         *
         * @param message the detail message. The detail message is saved for later retrieval by the {@link #getMessage()} method.
         */
        public ExtractException(final String message) {
            super(message);
        }
    
        /**
         * Constructs a new ExtractException with the specified cause.
         *
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Sat Mar 15 06:52:00 UTC 2025
    - 3K bytes
    - Viewed (0)
  9. api/maven-api-core/src/main/java/org/apache/maven/api/plugin/MojoException.java

            this.longMessage = longMessage;
        }
    
        /**
         * Constructs a new {@code MojoException} wrapping an underlying {@code Throwable}
         * and providing a {@code message}.
         */
        public MojoException(String message, Throwable cause) {
            super(message, cause);
        }
    
        /**
         * Constructs a new {@code MojoException} providing a {@code message}.
         */
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Mon May 13 09:53:45 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  10. fess-crawler/src/main/java/org/codelibs/fess/crawler/exception/CrawlingAccessException.java

        private String logLevel = INFO;
    
        /**
         * Constructs a new CrawlingAccessException with the specified detail message and cause.
         *
         * @param message the detail message
         * @param cause the cause
         */
        public CrawlingAccessException(final String message, final Throwable cause) {
            super(message, cause);
        }
    
        /**
         * Constructs a new CrawlingAccessException with the specified detail message.
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Sun Jul 06 02:13:03 UTC 2025
    - 3.8K bytes
    - Viewed (0)
Back to top