Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for CONNECTION_RESET (0.06 sec)

  1. src/test/java/jcifs/smb/SmbOperationExceptionTest.java

        @Test
        @DisplayName("Should identify error categories correctly")
        void testErrorCategories() {
            // Network error
            exception = new SmbOperationException(SmbOperationException.ErrorCode.CONNECTION_RESET, "Connection lost");
            assertTrue(exception.isNetworkError());
            assertFalse(exception.isAuthenticationError());
            assertFalse(exception.isFileSystemError());
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 16.1K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/SmbOperationException.java

        public enum ErrorCode {
            // Network errors
            CONNECTION_FAILED("Network connection failed", ErrorCategory.NETWORK, true), CONNECTION_TIMEOUT("Connection timed out",
                    ErrorCategory.NETWORK, true), CONNECTION_RESET("Connection reset by peer", ErrorCategory.NETWORK,
                            true), HOST_NOT_FOUND("Host not found", ErrorCategory.NETWORK, false),
    
            // Authentication errors
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 16.5K bytes
    - Viewed (0)
Back to top