- Sort Score
- Result 10 results
- Languages All
Results 101 - 110 of 152 for throwable (0.05 sec)
-
src/main/java/org/codelibs/fess/exception/ThumbnailGenerationException.java
* * @param message the exception message * @param cause the underlying cause of this exception */ public ThumbnailGenerationException(final String message, final Throwable cause) { super(message, cause); } /** * Constructs a new ThumbnailGenerationException with the specified message. * * @param message the exception message */Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Wed Nov 19 08:04:23 UTC 2025 - 1.5K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/exception/RobotsTxtException.java
* @param message the detail message * @param cause the cause of the exception */ public RobotsTxtException(final String message, final Throwable cause) { super(message, cause); } /** * Constructs a new RobotsTxtException with the specified detail message. * @param message the detail message */Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 1.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/client/SearchEngineClientException.java
* * @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); } /** * Constructs a new SearchEngineClientException with the specified message. * * @param message the detail message explaining the exceptionRegistered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/job/ScriptExecutorJob.java
} jobLog.setScriptResult(ret.toString()); } jobLog.setJobStatus(Constants.OK); } catch (final Throwable t) { logger.warn("Failed to execute job: id={}, script={}", id, script, t); jobLog.setJobStatus(Constants.FAIL);Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 5.5K bytes - Viewed (0) -
src/test/java/jcifs/smb/SmbUnsupportedOperationExceptionTest.java
assertNull(ex.getCause(), "No cause expected when only message is provided"); // toString behavior mirrors Throwable: includes message when not null String ts = ex.toString(); assertTrue(ts.contains("SmbUnsupportedOperationException"), "toString should contain class name"); if (msg != null) {
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 5.2K bytes - Viewed (0) -
src/main/java/org/codelibs/core/exception/IllegalPropertyRuntimeException.java
* Property name * @param cause * The cause of the exception */ public IllegalPropertyRuntimeException(final Class<?> targetClass, final String propertyName, final Throwable cause) { super("ECL0059", asArray(targetClass.getName(), propertyName, cause), cause); this.targetClass = targetClass; this.propertyName = propertyName; } /**Registered: Sat Dec 20 08:55:33 UTC 2025 - Last Modified: Sat Jul 05 00:11:05 UTC 2025 - 2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/exception/UserRoleLoginException.java
* This prevents stack trace generation for this exception type. * * @return null to skip stack trace generation */ @Override public synchronized Throwable fillInStackTrace() { return null; }Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Wed Nov 19 08:04:23 UTC 2025 - 2K bytes - Viewed (0) -
src/main/java/org/codelibs/core/io/ResourceBundleUtil.java
assertArgumentNotNull("bundle", bundle); assertArgumentNotEmpty("key", key); try { return bundle.getString(key); } catch (final Throwable t) { return null; } } /** * Converts the resource bundle to a {@link Map}. * * @param bundle the resource bundle (must not be {@literal null})
Registered: Sat Dec 20 08:55:33 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 5.3K bytes - Viewed (0) -
src/main/java/org/codelibs/core/exception/NoSuchConstructorRuntimeException.java
* Array of parameter types * @param cause * The cause of the exception */ public NoSuchConstructorRuntimeException(final Class<?> targetClass, final Class<?>[] argTypes, final Throwable cause) { super("ECL0064", asArray(targetClass.getName(), MethodUtil.getSignature(targetClass.getSimpleName(), argTypes)), cause); this.targetClass = targetClass; this.argTypes = argTypes; }Registered: Sat Dec 20 08:55:33 UTC 2025 - Last Modified: Sat Jul 05 00:11:05 UTC 2025 - 2.1K bytes - Viewed (0) -
src/main/java/org/codelibs/curl/CurlException.java
* (A {@code null} value is permitted, and indicates that the cause is nonexistent or unknown.) */ public CurlException(final String message, final Throwable cause) { super(message, cause); } /** * Constructs a new CurlException with the specified detail message. *Registered: Sat Dec 20 09:13:53 UTC 2025 - Last Modified: Sat Jul 05 01:38:18 UTC 2025 - 2K bytes - Viewed (0)