Skip to content

Commit b149819

Browse files
committed
docs: correct error type logic comment
1 parent 9c16df5 commit b149819

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

sdk-platform-java/gax-java/gax/src/main/java/com/google/api/gax/tracing/ErrorTypeUtil.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ public enum ErrorType {
112112
*
113113
* @param error the Throwable from which to extract the error type string.
114114
* @return a low-cardinality string representing the specific error type, or {@code
115-
* ErrorType.INTERNAL.toString()} if the provided error is {@code null}.
115+
* ErrorType.INTERNAL.toString()} if the provided error is {@code null} or non-determined.
116116
*/
117117
public static String extractErrorType(@Nullable Throwable error) {
118118
if (error == null) {

0 commit comments

Comments
 (0)