Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for INVALID_CREDENTIALS (0.21 sec)

  1. src/test/java/jcifs/smb/SmbOperationExceptionTest.java

            assertFalse(exception.isFileSystemError());
            assertFalse(exception.isTransientError());
    
            // Authentication error
            exception = new SmbOperationException(SmbOperationException.ErrorCode.INVALID_CREDENTIALS, "Bad password");
            assertFalse(exception.isNetworkError());
            assertTrue(exception.isAuthenticationError());
            assertFalse(exception.isFileSystemError());
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 16.1K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/SmbOperationException.java

            // Authentication errors
            AUTHENTICATION_FAILED("Authentication failed", ErrorCategory.AUTHENTICATION, false), ACCESS_DENIED("Access denied",
                    ErrorCategory.AUTHENTICATION, false), INVALID_CREDENTIALS("Invalid credentials", ErrorCategory.AUTHENTICATION,
                            false), SESSION_EXPIRED("Session expired", ErrorCategory.AUTHENTICATION, true),
    
            // File system 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)
Back to top