Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(195)

Unified Diff: tools/telemetry/telemetry/core/exceptions.py

Issue 522553002: Move remote platforms creation logic from android_browser_finder to platform (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix android_browser_finder_unittest Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: tools/telemetry/telemetry/core/exceptions.py
diff --git a/tools/telemetry/telemetry/core/exceptions.py b/tools/telemetry/telemetry/core/exceptions.py
index 671e2b8f1d10d4b79a561c7f0a6be427165efa12..56f4947070c4d9ec1a2de7cd0aa304c58729909a 100644
--- a/tools/telemetry/telemetry/core/exceptions.py
+++ b/tools/telemetry/telemetry/core/exceptions.py
@@ -3,6 +3,10 @@
# found in the LICENSE file.
+class PlatformError(Exception):
+ """ Represents an exception thrown when constructing platform. """
+
+
class NativeBrowserCrashException(Exception):
def __init__(self, browser=None, msg=''):
super(NativeBrowserCrashException, self).__init__(msg)

Powered by Google App Engine
This is Rietveld 408576698