- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 36 for Retailer (0.05 sec)
-
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) -
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) -
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) -
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) -
src/main/java/org/codelibs/fess/app/web/api/admin/joblog/ApiAdminJoblogAction.java
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 5.6K bytes - Viewed (0) -
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) -
android/guava/src/com/google/common/util/concurrent/ServiceManager.java
} /** * Returns true if all services are currently in the {@linkplain State#RUNNING running} state. * * <p>Users who want more detailed information should use the {@link #servicesByState} method to * get detailed information about which services are not running. */ public boolean isHealthy() { for (Service service : services) { if (!service.isRunning()) {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue May 13 17:27:14 UTC 2025 - 33.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/api/json/SearchApiManager.java
} writeJsonResponse(HttpServletResponse.SC_INTERNAL_SERVER_ERROR, e); } } /** * Gets a detailed message of the throwable. * @param t The throwable. * @return The detailed message. */ protected String detailedMessage(final Throwable t) { if (t == null) { return "Unknown"; }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 54.6K bytes - Viewed (0) -
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) -
android/guava/src/com/google/common/collect/ImmutableTable.java
import java.util.function.Function; import java.util.stream.Collector; import org.jspecify.annotations.Nullable; /** * A {@link Table} whose contents will never change, with many other important properties detailed * at {@link ImmutableCollection}. * * <p>See the Guava User Guide article on <a href= * "https://github.com/google/guava/wiki/ImmutableCollectionsExplained">immutable collections</a>. * * @author Gregory Kick
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue May 13 17:27:14 UTC 2025 - 17.4K bytes - Viewed (0)