You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: hadoop-tools/hadoop-azure/src/main/java/org/apache/hadoop/fs/azurebfs/services/retryReasonCategories/RetryReasonCategory.java
+15-5Lines changed: 15 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -22,20 +22,19 @@
22
22
23
23
/**
24
24
* Provides methods to define if given exception can be categorised to certain category.
25
-
* Each category has a different implementation of the interface.
25
+
* Each category has a different implementation of the abstract class.
26
26
* */
27
27
publicabstractclassRetryReasonCategory {
28
28
29
29
/**
30
-
* Returns if given server response error can be converted to an abbreviation
31
-
* by the implementation.
30
+
* Returns if given server response error can be categorised by the implementation.
32
31
*
33
32
* @param ex exception captured in the server response.
34
33
* @param statusCode statusCode on the server response
35
34
* @param serverErrorMessage serverErrorMessage on the server response.
36
35
*
37
-
* @return <ol><li>true if server response error can be converted to abbreviation by the implementation</li>
38
-
* <li>false if response error can not be abbreviated by the implementation</li></ol>
36
+
* @return <ol><li>true if server response error can be categorised by the implementation</li>
37
+
* <li>false if response error can not be categorised by the implementation</li></ol>
0 commit comments