- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for isNetworkError (0.04 sec)
-
src/test/java/jcifs/smb/SmbOperationExceptionTest.java
assertFalse(exception.isAuthenticationError()); assertTrue(exception.isFileSystemError()); assertFalse(exception.isTransientError()); // Transient error exception = new SmbOperationException(SmbOperationException.ErrorCode.SERVICE_UNAVAILABLE, "Server busy"); assertFalse(exception.isNetworkError()); assertFalse(exception.isAuthenticationError());
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
return System.currentTimeMillis() - operationStartTime; } /** * Check if this is a network-related error * * @return true if network error */ public boolean isNetworkError() { return errorCode.getCategory() == ErrorCategory.NETWORK; } /** * Check if this is an authentication error * * @return true if authentication 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)