- Sort Score
- Num 10 results
- Language All
Results 1 - 2 of 2 for getErrorCategory (0.17 seconds)
-
src/main/java/jcifs/smb/SmbOperationException.java
} return this; } // Getters public ErrorCode getErrorCode() { return errorCode; } public ErrorCategory getErrorCategory() { return errorCode.getCategory(); } public RetryPolicy getRetryPolicy() { return retryPolicy; } public Map<String, Object> getContext() {Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 30 05:58:03 GMT 2025 - 16.5K bytes - Click Count (0) -
src/test/java/jcifs/smb/SmbOperationExceptionTest.java
assertTrue(exception.getMessage().contains("FILE_NOT_FOUND")); assertTrue(exception.getMessage().contains("test.txt")); assertEquals(SmbOperationException.ErrorCategory.FILE_SYSTEM, exception.getErrorCategory()); assertFalse(exception.isRetryable()); } @Test @DisplayName("Should create exception with cause") void testCreationWithCause() { // Given
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 30 05:58:03 GMT 2025 - 16.1K bytes - Click Count (0)