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

Side by Side Diff: third_party/android_testrunner/errors.py

Issue 1290173003: [Android] Reland of Remove android_commands and android_testrunner. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fixed: removed references from content/telemetry.isolate and TELEMETRY_DEPS 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 unified diff | Download patch
OLDNEW
(Empty)
1 #!/usr/bin/python2.4
2 #
3 #
4 # Copyright 2008, The Android Open Source Project
5 #
6 # Licensed under the Apache License, Version 2.0 (the "License");
7 # you may not use this file except in compliance with the License.
8 # You may obtain a copy of the License at
9 #
10 # http://www.apache.org/licenses/LICENSE-2.0
11 #
12 # Unless required by applicable law or agreed to in writing, software
13 # distributed under the License is distributed on an "AS IS" BASIS,
14 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 # See the License for the specific language governing permissions and
16 # limitations under the License.
17
18 """Defines common exception classes for this package."""
19
20
21 class MsgException(Exception):
22 """Generic exception with an optional string msg."""
23 def __init__(self, msg=""):
24 self.msg = msg
25
26
27 class WaitForResponseTimedOutError(Exception):
28 """We sent a command and had to wait too long for response."""
29
30
31 class DeviceUnresponsiveError(Exception):
32 """Device is unresponsive to command."""
33
34
35 class InstrumentationError(Exception):
36 """Failed to run instrumentation."""
37
38
39 class AbortError(MsgException):
40 """Generic exception that indicates a fatal error has occurred and program
41 execution should be aborted."""
42
43
44 class ParseError(MsgException):
45 """Raised when xml data to parse has unrecognized format."""
46
OLDNEW
« no previous file with comments | « third_party/android_testrunner/am_instrument_parser.py ('k') | third_party/android_testrunner/logger.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698