- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for isFileSystemError (1 sec)
-
src/test/java/jcifs/smb/SmbOperationExceptionTest.java
assertFalse(exception.isTransientError()); // Transient error exception = new SmbOperationException(SmbOperationException.ErrorCode.SERVICE_UNAVAILABLE, "Server busy"); assertFalse(exception.isNetworkError()); assertFalse(exception.isAuthenticationError()); assertFalse(exception.isFileSystemError()); assertTrue(exception.isTransientError()); }
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
} /** * Check if this is a file system error * * @return true if file system error */ public boolean isFileSystemError() { return errorCode.getCategory() == ErrorCategory.FILE_SYSTEM; } /** * Check if this is a transient error * * @return true if transient error */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 16.5K bytes - Viewed (0)