- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for PATH_NOT_FOUND (0.05 sec)
-
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) -
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)