Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getNtStatus (0.04 sec)

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

         */
        private boolean isRetryableException(CIFSException e) {
            if (e instanceof SmbException) {
                SmbException se = (SmbException) e;
                int status = se.getNtStatus();
                // Retry on network-related errors but not on authentication or access errors
                return status == NtStatus.NT_STATUS_CONNECTION_REFUSED || status == NtStatus.NT_STATUS_NETWORK_NAME_DELETED
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 103.2K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/smb1/SmbFile.java

                        dest.setPathInformation(attributes, createTime, lastModified);
                    } catch (final SmbException se) {
                        if (se.getNtStatus() != NtStatus.NT_STATUS_ACCESS_DENIED
                                && se.getNtStatus() != NtStatus.NT_STATUS_OBJECT_NAME_COLLISION) {
                            throw se;
                        }
                    }
                }
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 112.2K bytes
    - Viewed (0)
Back to top