Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for INVALID_PROTOCOL (0.36 sec)

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

            // Protocol errors
            INVALID_PARAMETER("Invalid parameter", ErrorCategory.PROTOCOL, false), NOT_SUPPORTED("Operation not supported",
                    ErrorCategory.PROTOCOL, false), INVALID_PROTOCOL("Invalid protocol", ErrorCategory.PROTOCOL,
                            false), MESSAGE_TOO_LARGE("Message too large", ErrorCategory.PROTOCOL, false),
    
            // Resource errors
    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

            assertFalse(SmbOperationException.ErrorCode.INVALID_PARAMETER.isRetryable());
            assertFalse(SmbOperationException.ErrorCode.NOT_SUPPORTED.isRetryable());
            assertFalse(SmbOperationException.ErrorCode.INVALID_PROTOCOL.isRetryable());
            assertFalse(SmbOperationException.ErrorCode.MESSAGE_TOO_LARGE.isRetryable());
            assertFalse(SmbOperationException.ErrorCode.UNKNOWN_ERROR.isRetryable());
    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