Index: build/android/pylib/base/test_exception.py |
diff --git a/build/android/pylib/base/test_exception.py b/build/android/pylib/base/test_exception.py |
new file mode 100644 |
index 0000000000000000000000000000000000000000..f00f0d0ee8525cf9cb2ce04131e65e81aec153ba |
--- /dev/null |
+++ b/build/android/pylib/base/test_exception.py |
@@ -0,0 +1,9 @@ |
+# Copyright 2016 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. |
+ |
+ |
+class TestException(Exception): |
+ """Base class for exceptions thrown by the test runner.""" |
+ pass |
+ |