- Sort Score
- Result 10 results
- Languages All
Results 121 - 130 of 906 for clause (0.11 sec)
-
src/test/java/org/codelibs/fess/exception/DataStoreExceptionTest.java
} public void test_constructor_withCause() { // Test with cause only Exception cause = new IllegalStateException("Underlying error"); DataStoreException exception = new DataStoreException(cause); assertNotNull(exception); assertEquals(cause, exception.getCause()); assertEquals("java.lang.IllegalStateException: Underlying error", exception.getMessage());
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 8.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/exception/SsoProcessException.java
} /** * 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 * @param e The underlying exception that caused this SSO process exception */ public SsoProcessException(final String message, final Exception e) { super(message, e); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.9K bytes - Viewed (0) -
guava-tests/test/com/google/common/base/ThrowablesTest.java
cause.initCause(exception); IllegalArgumentException expected = assertThrows(IllegalArgumentException.class, () -> getCausalChain(cause)); assertThat(expected).hasCauseThat().isSameInstanceAs(cause); } @GwtIncompatible // getCauseAs(Throwable, Class) public void testGetCauseAs() { SomeCheckedException cause = new SomeCheckedException(); SomeChainingException thrown = new SomeChainingException(cause);
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 14.9K bytes - Viewed (0) -
okhttp-hpacktests/src/test/java/okhttp3/internal/http2/hpackjson/Case.kt
package okhttp3.internal.http2.hpackjson import okhttp3.internal.http2.Header import okio.ByteString /** * Representation of an individual case (set of headers and wire format). There are many cases for a * single story. This class is used reflectively with Moshi to parse stories. */ data class Case( val seqno: Int = 0, val wire: ByteString? = null, val headers: List<Map<String, String>>, ) : Cloneable {
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Sat Dec 23 10:26:25 UTC 2023 - 1.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/exception/QueryParseException.java
* within the Fess search framework. * */ public class QueryParseException extends FessSystemException { /** Serial version UID for serialization compatibility */ private static final long serialVersionUID = 1L; /** * Constructs a new QueryParseException with the specified ParseException as the cause. * * @param cause the ParseException that caused this exception */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.3K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/base/ThrowablesTest.java
cause.initCause(exception); IllegalArgumentException expected = assertThrows(IllegalArgumentException.class, () -> getCausalChain(cause)); assertThat(expected).hasCauseThat().isSameInstanceAs(cause); } @GwtIncompatible // getCauseAs(Throwable, Class) public void testGetCauseAs() { SomeCheckedException cause = new SomeCheckedException(); SomeChainingException thrown = new SomeChainingException(cause);
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 14.9K bytes - Viewed (0) -
src/test/java/jcifs/smb1/util/transport/TransportExceptionTest.java
void testGetRootCause() { Exception rootCause = new IllegalStateException("Test root cause"); TransportException exception = new TransportException("Message", rootCause); assertEquals(rootCause, exception.getRootCause()); } @Test @DisplayName("Should return null when no root cause") void testGetRootCauseWhenNull() {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 11.5K bytes - Viewed (0) -
src/main/java/org/codelibs/core/exception/ConverterRuntimeException.java
* @param propertyName * Property name * @param value * Value * @param cause * Cause */ public ConverterRuntimeException(final String propertyName, final Object value, final Throwable cause) { super("ECL0097", asArray(propertyName, value, cause), cause); this.propertyName = propertyName; this.value = value; } /**
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat Jul 05 00:11:05 UTC 2025 - 1.9K bytes - Viewed (0) -
src/test/java/jcifs/smb1/smb1/SmbExceptionTest.java
void testToStringWithRootCause() { RuntimeException cause = new RuntimeException("boom"); SmbException ex = new SmbException(0, cause); assertTrue(ex.toString().contains("RuntimeException"), "String representation must include the root cause stack trace"); } /** * Verify that {@link #toString()} with no root cause equals the default
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 4.5K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exception/SsoProcessExceptionTest.java
// Test constructor with message and Exception cause String message = "SSO token validation error"; Exception cause = new RuntimeException("Invalid token format"); SsoProcessException exception = new SsoProcessException(message, cause); assertEquals(message, exception.getMessage()); assertEquals(cause, exception.getCause()); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 9.3K bytes - Viewed (0)