- Sort Score
- Num 10 results
- Language All
Results 1 - 3 of 3 for testExceptionChaining (0.35 seconds)
-
src/test/java/org/codelibs/curl/CurlExceptionTest.java
// Field doesn't exist } assertTrue("CurlException should have serialVersionUID field", hasSerialVersionUID); } @Test public void testExceptionChaining() { IOException rootCause = new IOException("Root cause"); RuntimeException intermediateCause = new RuntimeException("Intermediate", rootCause);
Created: Thu Apr 02 15:34:12 GMT 2026 - Last Modified: Thu Jul 31 01:01:12 GMT 2025 - 4.2K bytes - Click Count (0) -
src/test/java/jcifs/RuntimeCIFSExceptionTest.java
assertTrue(exception instanceof Exception); assertTrue(exception instanceof Throwable); } @Test @DisplayName("Should support exception chaining") void testExceptionChaining() { // Given Exception rootCause = new IllegalStateException("Root error"); RuntimeCIFSException intermediateCause = new RuntimeCIFSException("Intermediate", rootCause); // When
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 10.2K bytes - Click Count (0) -
src/test/java/jcifs/smb/SmbExceptionTest.java
break; } } assertTrue(foundTestMethod); } @Test @DisplayName("Should handle exception chaining") void testExceptionChaining() { // Given Exception rootCause = new RuntimeException("Root cause"); SmbException intermediateCause = new SmbException("Intermediate", rootCause); // WhenCreated: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 7.9K bytes - Click Count (0)