blob: 49c949a07c8a8793d43851d60c6bb03f276a1b76 [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 a given {@code WidgetMatcher} did not match any widgets in the Flutter UI
* hierarchy.
*/
public final class NoMatchingWidgetException extends RuntimeException implements EspressoException {
public NoMatchingWidgetException(String message) {
super(message);
}
}