Skip to content

Commit

Permalink
Core: Mark NoSuchViewException as CleanableFailure (#9516)
Browse files Browse the repository at this point in the history
  • Loading branch information
nastra committed Jan 19, 2024
1 parent e9f26b1 commit b1db17d
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -21,7 +21,7 @@
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));
Expand Down

0 comments on commit b1db17d

Please sign in to comment.