Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for PATH_NOT_FOUND (0.05 sec)

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

            assertFalse(exception.isFileSystemError());
            assertFalse(exception.isTransientError());
    
            // File system error
            exception = new SmbOperationException(SmbOperationException.ErrorCode.PATH_NOT_FOUND, "Directory missing");
            assertFalse(exception.isNetworkError());
            assertFalse(exception.isAuthenticationError());
            assertTrue(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

                            false), SESSION_EXPIRED("Session expired", ErrorCategory.AUTHENTICATION, true),
    
            // File system errors
            FILE_NOT_FOUND("File not found", ErrorCategory.FILE_SYSTEM, false), PATH_NOT_FOUND("Path not found", ErrorCategory.FILE_SYSTEM,
                    false), FILE_EXISTS("File already exists", ErrorCategory.FILE_SYSTEM, false), DIRECTORY_NOT_EMPTY("Directory not empty",
    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