Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 62 for setMail (0.04 sec)

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

    public class GsaConfigException extends FessSystemException {
    
        private static final long serialVersionUID = 1L;
    
        /**
         * Constructs a new GSA configuration exception with the specified detail message and cause.
         *
         * @param message the detail message describing the configuration error
         * @param cause the cause of the exception
         */
        public GsaConfigException(final String message, final Throwable cause) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.6K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/exception/WebApiException.java

            return statusCode;
        }
    
        /**
         * Constructs a WebApiException with the specified status code, message, and cause.
         *
         * @param statusCode The HTTP status code
         * @param message The detail message
         * @param cause The cause of this exception
         */
        public WebApiException(final int statusCode, final String message, final Throwable cause) {
            super(message, cause);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.3K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/util/concurrent/UncheckedExecutionException.java

      }
    
      /**
       * Creates a new instance with the given detail message and cause. Prefer to provide a
       * non-nullable {@code cause}, as many users expect to find one.
       */
      public UncheckedExecutionException(@Nullable String message, @Nullable Throwable cause) {
        super(message, cause);
      }
    
      /**
       * Creates a new instance with {@code null} as its detail message and the given cause. Prefer to
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Feb 13 17:34:21 UTC 2025
    - 4.2K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/exception/StorageException.java

         * Constructs a new storage exception with the specified detail message and cause.
         *
         * @param message The detail message.
         * @param cause   The cause of the exception.
         */
        public StorageException(final String message, final Throwable cause) {
            super(message, cause);
        }
    
        /**
         * Constructs a new storage exception with the specified detail message.
         *
         * @param message The detail message.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.5K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/exception/JobProcessingException.java

         *
         * @param message the detail message explaining the exception
         * @param e the cause of the exception
         */
        public JobProcessingException(final String message, final Throwable e) {
            super(message, e);
        }
    
        /**
         * Constructs a new JobProcessingException with the specified detail message.
         *
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.7K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/exception/SsoLoginException.java

         * Constructs a new SsoLoginException with the specified detail message.
         *
         * @param message The detail message explaining the SSO login failure
         */
        public SsoLoginException(final String message) {
            super(message);
        }
    
        /**
         * Constructs a new SsoLoginException with the specified detail message and cause.
         *
         * @param message The detail message explaining the SSO login failure
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.7K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/exception/LdapConfigurationException.java

        private static final long serialVersionUID = 1L;
    
        /**
         * Constructs a new LDAP configuration exception with the specified detail message.
         *
         * @param message The detail message.
         */
        public LdapConfigurationException(final String message) {
            super(message);
        }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.1K bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/fess/job/AggregateLogJobTest.java

            // Verify large message is handled
            assertNotNull(result);
            assertTrue(result.length() > 1000);
            assertTrue(result.contains("Error detail 0"));
            assertTrue(result.contains("Error detail 999"));
            assertTrue(result.endsWith("\n"));
        }
    
        public void test_execute_withCheckedExceptionWrapped() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 12.1K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/dict/DictionaryException.java

         *
         * @param message the detail message
         * @param cause the underlying cause of the exception
         */
        public DictionaryException(final String message, final Throwable cause) {
            super(message, cause);
        }
    
        /**
         * Creates a new DictionaryException with the specified message.
         *
         * @param message the detail message
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.6K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/base/PatternCompiler.java

    interface PatternCompiler {
      /**
       * Compiles the given pattern.
       *
       * @throws IllegalArgumentException if the pattern is invalid
       */
      @RestrictedApi(
          explanation = "PatternCompiler is an implementation detail of com.google.common.base",
          allowedOnPath = ".*/com/google/common/base/.*")
      CommonPattern compile(String pattern);
    
      /**
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Dec 21 03:10:51 UTC 2024
    - 1.7K bytes
    - Viewed (0)
Back to top