summaryrefslogtreecommitdiffstats
path: root/mobile/android/geckoview/src/androidTest/java/org/mozilla/geckoview/test/rule/TestHarnessException.java
blob: b496ae41fa52c4c7bce00261495fe3d70c87c39d (plain)
1
2
3
4
5
6
7
8
9
10
11
/* Any copyright is dedicated to the Public Domain.
http://creativecommons.org/publicdomain/zero/1.0/ */

package org.mozilla.geckoview.test.rule;

/** Exception thrown when an error occurs in the test harness itself and not in a specific test */
public class TestHarnessException extends RuntimeException {
  public TestHarnessException(final Throwable cause) {
    super(cause);
  }
}