Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for SmbOperationException (0.07 sec)

  1. src/main/java/jcifs/smb/SmbOperationException.java

         * @param attemptNumber the current attempt number
         * @return new exception with updated attempt information
         */
        public static SmbOperationException forRetry(SmbOperationException original, int attemptNumber) {
            SmbOperationException retry = new SmbOperationException(original.errorCode, original.originalMessage, original.getCause(),
                    original.retryPolicy, original.context);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 16.5K bytes
    - Viewed (0)
  2. src/test/java/jcifs/smb/SmbOperationExceptionTest.java

            assertTrue(SmbOperationException.ErrorCode.RESOURCE_LOCKED.isRetryable());
            assertTrue(SmbOperationException.ErrorCode.BUSY.isRetryable());
            assertTrue(SmbOperationException.ErrorCode.TRY_AGAIN.isRetryable());
            assertTrue(SmbOperationException.ErrorCode.SERVICE_UNAVAILABLE.isRetryable());
    
            // Non-retryable errors
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 16.1K bytes
    - Viewed (0)
Back to top