blob: ca69e39802d099960fd4b4a56d26c4f911f06166 [file] [log] [blame]
// Copyright 2019 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
package androidx.test.espresso.flutter.exception;
import androidx.test.espresso.EspressoException;
/** Indicates that the {@code View} that Espresso operates on is not a valid Flutter View. */
public final class InvalidFlutterViewException extends RuntimeException
implements EspressoException {
/** Constructs with an error message. */
public InvalidFlutterViewException(String message) {
super(message);
}
}