Commit 9f35be80 authored by Michael Thiessen's avatar Michael Thiessen Committed by Commit Bot

Remove content/ CriteriaNotSatisfiedException

Part 3 of a 3-sided change to move CriteriaNotSatisfiedException to
base/

Bug: 1134178
Change-Id: Ie76869351d8a09bd92205e3aef3ffea65220c01a
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2515520Reviewed-by: default avatarYaron Friedman <yfriedman@chromium.org>
Commit-Queue: Michael Thiessen <mthiesse@chromium.org>
Cr-Commit-Position: refs/heads/master@{#823553}
parent 4bbe2e44
......@@ -45,7 +45,6 @@ android_library("content_java_test_support") {
"javatests/src/org/chromium/content_public/browser/test/util/Coordinates.java",
"javatests/src/org/chromium/content_public/browser/test/util/Criteria.java",
"javatests/src/org/chromium/content_public/browser/test/util/CriteriaHelper.java",
"javatests/src/org/chromium/content_public/browser/test/util/CriteriaNotSatisfiedException.java",
"javatests/src/org/chromium/content_public/browser/test/util/DOMUtils.java",
"javatests/src/org/chromium/content_public/browser/test/util/DomAutomationController.java",
"javatests/src/org/chromium/content_public/browser/test/util/HistoryUtils.java",
......
// Copyright 2020 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 org.chromium.content_public.browser.test.util;
/**
* Exception indicating that a Criteria did not match expectations.
*/
public class CriteriaNotSatisfiedException
extends org.chromium.base.test.util.CriteriaNotSatisfiedException {
/**
* @param msg The reason the criteria was not met.
*/
public CriteriaNotSatisfiedException(String msg) {
super(msg);
}
/**
* @param cause The underlying exception that prevented the Criteria.
*/
public CriteriaNotSatisfiedException(Throwable cause) {
super(cause);
}
}
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment