Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for DISK_FULL (0.56 sec)

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

            // Without custom message
            exception = new SmbOperationException(SmbOperationException.ErrorCode.DISK_FULL, null);
            assertTrue(exception.getMessage().contains("DISK_FULL"));
            assertTrue(exception.getMessage().contains("Disk full"));
        }
    
        @Test
        @DisplayName("Should have correct retryable flags for error codes")
    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

                    false), FILE_EXISTS("File already exists", ErrorCategory.FILE_SYSTEM, false), DIRECTORY_NOT_EMPTY("Directory not empty",
                            ErrorCategory.FILE_SYSTEM, false), DISK_FULL("Disk full", ErrorCategory.RESOURCE,
                                    false), QUOTA_EXCEEDED("Quota exceeded", ErrorCategory.RESOURCE, false),
    
            // Protocol 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