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

Unified Diff: devil/devil/android/device_errors.py

Issue 2808763004: [devil] Raise DeviceUnreachableError on device not found (Closed)
Patch Set: match specific device Created 3 years, 8 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
« no previous file with comments | « no previous file | devil/devil/android/device_test_case.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: devil/devil/android/device_errors.py
diff --git a/devil/devil/android/device_errors.py b/devil/devil/android/device_errors.py
index 568e497496e3930b3710b0ca8d5e09a1bc2c4b7b..57f361503a44cec9178004f2da067360ab47506b 100644
--- a/devil/devil/android/device_errors.py
+++ b/devil/devil/android/device_errors.py
@@ -4,6 +4,22 @@
"""
Exception classes raised by AdbWrapper and DeviceUtils.
+
+The class hierarchy for device exceptions is:
+
+ base_error.BaseError
+ +-- CommandFailedError
+ | +-- AdbCommandFailedError
+ | | +-- AdbShellCommandFailedError
+ | +-- FastbootCommandFailedError
+ | +-- DeviceVersionError
+ | +-- DeviceChargingError
+ +-- CommandTimeoutError
+ +-- DeviceUnreachableError
+ +-- NoDevicesError
+ +-- MultipleDevicesError
+ +-- NoAdbError
+
"""
from devil import base_error
« no previous file with comments | « no previous file | devil/devil/android/device_test_case.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698