Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for communication (0.05 sec)

  1. src/test/java/org/codelibs/fess/exception/SsoLoginExceptionTest.java

            assertNull(exception.getCause());
        }
    
        public void test_constructor_withDifferentExceptionTypes() {
            // Test with different exception types as cause
            String message = "SSO provider communication error";
    
            // Test with IOException
            IOException ioException = new IOException("Network error");
            SsoLoginException exception1 = new SsoLoginException(message, ioException);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 9.7K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/exception/SsoProcessExceptionTest.java

            assertNull(exception.getCause());
        }
    
        public void test_constructor_withNullCause() {
            // Test constructor with null cause
            String message = "SSO provider communication failure";
            SsoProcessException exception = new SsoProcessException(message, null);
    
            assertEquals(message, exception.getMessage());
            assertNull(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)
  3. CHANGELOG/CHANGELOG-1.31.md

    - Built Kubernetes with Go 1.22.4. ([#125363](https://github.com/kubernetes/kubernetes/pull/125363), [@cpanato](https://github.com/cpanato)) [SIG Architecture, Cloud Provider, Release, Storage and Testing]
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Wed Aug 13 19:49:57 UTC 2025
    - 429.6K bytes
    - Viewed (0)
Back to top