- Sort Score
- Result 10 results
- Languages All
Results 911 - 920 of 1,201 for because (0.03 sec)
-
src/main/java/org/codelibs/fess/exception/ThemeException.java
/** * Constructs a new ThemeException with the specified message and cause. * * @param message the exception message * @param cause the underlying cause of this exception */ public ThemeException(final String message, final Throwable cause) { super(message, cause); } /** * Constructs a new ThemeException with the specified message. *
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/exception/ThumbnailGenerationException.java
/** * Constructs a new ThumbnailGenerationException with the specified message and cause. * * @param message the exception message * @param cause the underlying cause of this exception */ public ThumbnailGenerationException(final String message, final Exception cause) { super(message, cause); } /** * Constructs a new ThumbnailGenerationException with the specified 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) -
src/main/java/jcifs/smb/SmbAuthException.java
super(errcode, null); } SmbAuthException(final String message) { super(message); } SmbAuthException(final String message, final Throwable cause) { super(message, cause); }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 1.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/client/SearchEngineClientException.java
/** * Constructs a new SearchEngineClientException with the specified message and cause. * * @param message the detail message explaining the exception * @param cause the underlying cause of the exception */ public SearchEngineClientException(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 - 1.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/exception/SsoMessageException.java
* * @param messageCode The message code for internationalized error display * @param message The detailed error message * @param cause The underlying cause of this exception */ public SsoMessageException(final VaMessenger<FessMessages> messageCode, final String message, final Throwable cause) { super(message, cause); this.messageCode = messageCode;
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/core/exception/ParseRuntimeException.java
private static final long serialVersionUID = -5237329676597387063L; /** * Creates a {@link ParseRuntimeException}. * * @param cause the underlying exception */ public ParseRuntimeException(final ParseException cause) { super("ECL0050", asArray(cause), cause); } /** * Creates a {@link ParseRuntimeException}. * * @param s the string that could not be parsed */
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jun 19 09:12:22 UTC 2025 - 1.4K bytes - Viewed (0) -
fess-crawler-opensearch/src/main/java/org/codelibs/fess/crawler/exception/OpenSearchAccessException.java
} /** * Creates a new instance of OpenSearchAccessException. * * @param message the detail message * @param cause the cause */ public OpenSearchAccessException(final String message, final Throwable cause) { super(message, cause); }
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 1.4K bytes - Viewed (0) -
src/main/java/org/codelibs/core/exception/ClIllegalStateException.java
* * @param message * Message * @param cause * The original exception */ public ClIllegalStateException(final String message, final Throwable cause) { super(message, cause); } /** * Creates a {@link ClIllegalStateException}. * * @param cause * The original exception */
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jun 19 09:12:22 UTC 2025 - 1.7K bytes - Viewed (0) -
futures/failureaccess/src/com/google/common/util/concurrent/internal/InternalFutures.java
* Guava 27.0 */ public final class InternalFutures { /** * Usually returns {@code null} but, if the given {@code Future} has failed, may <i>optionally</i> * return the cause of the failure. "Failure" means specifically "completed with an exception"; it * does not include "was cancelled." To be explicit: If this method returns a non-null value, * then: * * <ul>
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Jan 18 02:54:30 UTC 2025 - 1.7K bytes - Viewed (0) -
src/main/java/org/codelibs/core/exception/EmptyArgumentException.java
* Message code * @param args * Array of arguments * @param cause * The cause of the exception */ public EmptyArgumentException(final String argName, final String messageCode, final Object[] args, final Throwable cause) { super(argName, messageCode, args, cause); }
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jun 19 09:12:22 UTC 2025 - 1.7K bytes - Viewed (0)