This is an automated email from the ASF dual-hosted git repository.
amoghj pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/iceberg.git
The following commit(s) were added to refs/heads/main by this push:
new b1db17dcf7 Core: Mark NoSuchViewException as CleanableFailure (#9516)
b1db17dcf7 is described below
commit b1db17dcf75b8f77e44c32908bcf385eb1990431
Author: Eduard Tudenhoefner <[email protected]>
AuthorDate: Fri Jan 19 18:34:01 2024 +0100
Core: Mark NoSuchViewException as CleanableFailure (#9516)
---
.../main/java/org/apache/iceberg/exceptions/NoSuchViewException.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/api/src/main/java/org/apache/iceberg/exceptions/NoSuchViewException.java
b/api/src/main/java/org/apache/iceberg/exceptions/NoSuchViewException.java
index cf2b20a609..1079e1187f 100644
--- a/api/src/main/java/org/apache/iceberg/exceptions/NoSuchViewException.java
+++ b/api/src/main/java/org/apache/iceberg/exceptions/NoSuchViewException.java
@@ -21,7 +21,7 @@ package org.apache.iceberg.exceptions;
import com.google.errorprone.annotations.FormatMethod;
/** Exception raised when attempting to load a view that does not exist. */
-public class NoSuchViewException extends RuntimeException {
+public class NoSuchViewException extends RuntimeException implements
CleanableFailure {
@FormatMethod
public NoSuchViewException(String message, Object... args) {
super(String.format(message, args));