Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for Retailer (0.81 sec)

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

        private final transient VaMessenger<FessMessages> messageCode;
    
        /**
         * Constructs a new SSO message exception with message code, detailed message, and cause.
         *
         * @param messageCode The message code for internationalized error display
         * @param message The detailed error message
         * @param cause The underlying cause of this exception
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.7K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/exception/SsoProcessException.java

         *
         * @param message The detailed error message explaining the cause of the exception
         */
        public SsoProcessException(final String message) {
            super(message);
        }
    
        /**
         * Constructs a new SSO process exception with the specified detailed message and cause.
         *
         * @param message The detailed error message explaining the cause of the exception
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.9K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/exception/InvalidQueryException.java

        /**
         * Creates a new InvalidQueryException with message code, message, and cause.
         *
         * @param messageCode the message code for localized error messages
         * @param message the detailed error message
         * @param cause the cause of the exception
         */
        public InvalidQueryException(final VaMessenger<FessMessages> messageCode, 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)
  4. src/main/java/org/codelibs/fess/exception/InvalidAccessTokenException.java

        private final String type;
    
        /**
         * Creates a new InvalidAccessTokenException with the specified type and message.
         *
         * @param type the type of the invalid access token
         * @param message the detailed error message
         */
        public InvalidAccessTokenException(final String type, final String message) {
            super(message);
            this.type = type;
        }
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.6K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/web/api/admin/joblog/ApiAdminJoblogAction.java

                    .status(ApiResult.Status.OK)
                    .result());
        }
    
        // GET /api/admin/joblog/log/{id}
        /**
         * Returns specific job log by ID.
         * Provides detailed information about a particular job execution.
         *
         * @param id the job log ID
         * @return JSON response containing the job log details
         */
        @Execute
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 5.6K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/web/admin/failureurl/EditForm.java

        /**
         * The name or type of the error that occurred.
         * This field provides a categorization of the failure type.
         */
        public String errorName;
    
        /**
         * The detailed error log or stack trace for the failure.
         * This field contains the full error information for debugging purposes.
         */
        public String errorLog;
    
        /**
         * The number of times this URL has failed.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 4.2K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/collect/ImmutableClassToInstanceMap.java

    import java.util.Map;
    import org.jspecify.annotations.NonNull;
    import org.jspecify.annotations.Nullable;
    
    /**
     * A {@link ClassToInstanceMap} whose contents will never change, with many other important
     * properties detailed at {@link ImmutableCollection}.
     *
     * @author Kevin Bourrillion
     * @since 2.0
     */
    @Immutable(containerOf = "B")
    @GwtIncompatible
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Mar 17 20:26:29 UTC 2025
    - 7.1K bytes
    - Viewed (0)
Back to top