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

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

Issue 1280903003: Add dependency_manager initialization to binary_manager (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix and refactor the unittest. Created 5 years, 4 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 cfb4b319fe13a4faacfb44d14591dcfa6e58cd6a..dd218e14f0b3bc5ca59c31d95df729da48b8598c 100644
--- a/tools/telemetry/telemetry/core/exceptions.py
+++ b/tools/telemetry/telemetry/core/exceptions.py
@@ -97,6 +97,11 @@ class IntentionalException(Error):
"""Represent an exception raised by a unittest which is not printed."""
+class InitializationError(Error):
+ def __init__(self, string):
+ super(InitializationError, self).__init__(string)
+
+
class LoginException(Error):
pass
« no previous file with comments | « tools/telemetry/telemetry/benchmark_runner.py ('k') | tools/telemetry/telemetry/internal/util/binary_manager.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698