blob: e163dd45b36abb6bd8c49f49fbf1fbc68f0b6271 [file] [log] [blame]
The Android Open Source Project2b83cbd2009-03-05 17:04:45 -08001#!/usr/bin/python2.4
2#
3#
4# Copyright 2008, The Android Open Source Project
5#
Brett Chabot764d3fa2009-06-25 17:57:31 -07006# 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
The Android Open Source Project2b83cbd2009-03-05 17:04:45 -08009#
Brett Chabot764d3fa2009-06-25 17:57:31 -070010# http://www.apache.org/licenses/LICENSE-2.0
The Android Open Source Project2b83cbd2009-03-05 17:04:45 -080011#
Brett Chabot764d3fa2009-06-25 17:57:31 -070012# 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
The Android Open Source Project2b83cbd2009-03-05 17:04:45 -080016# limitations under the License.
17
18"""Defines common exception classes for this package."""
19
20
Brett Chabot764d3fa2009-06-25 17:57:31 -070021class MsgException(Exception):
22 """Generic exception with an optional string msg."""
23 def __init__(self, msg=""):
24 self.msg = msg
25
26
The Android Open Source Project2b83cbd2009-03-05 17:04:45 -080027class WaitForResponseTimedOutError(Exception):
28 """We sent a command and had to wait too long for response."""
29
30
31class DeviceUnresponsiveError(Exception):
32 """Device is unresponsive to command."""
Brett Chabot764d3fa2009-06-25 17:57:31 -070033
The Android Open Source Project2b83cbd2009-03-05 17:04:45 -080034
35class InstrumentationError(Exception):
36 """Failed to run instrumentation."""
37
38
Brett Chabot764d3fa2009-06-25 17:57:31 -070039class AbortError(MsgException):
The Android Open Source Project2b83cbd2009-03-05 17:04:45 -080040 """Generic exception that indicates a fatal error has occurred and program
41 execution should be aborted."""
42
Brett Chabot8a101cb2009-05-05 12:56:39 -070043
Brett Chabot764d3fa2009-06-25 17:57:31 -070044class ParseError(MsgException):
The Android Open Source Project2b83cbd2009-03-05 17:04:45 -080045 """Raised when xml data to parse has unrecognized format."""
46