| Index: tools/telemetry/telemetry/core/exceptions.py
|
| diff --git a/tools/telemetry/telemetry/core/exceptions.py b/tools/telemetry/telemetry/core/exceptions.py
|
| index 1181bce6b47d9c0bf15b2cfe63dc4e5aaccdf1dd..51b91a4068817a85a302f4ba8efaf2b6f493cc29 100644
|
| --- a/tools/telemetry/telemetry/core/exceptions.py
|
| +++ b/tools/telemetry/telemetry/core/exceptions.py
|
| @@ -7,6 +7,10 @@ class PlatformError(Exception):
|
| """ Represents an exception thrown when constructing platform. """
|
|
|
|
|
| +class TimeoutException(Exception):
|
| + pass
|
| +
|
| +
|
| class AppCrashException(Exception):
|
| def __init__(self, app=None, msg=''):
|
| super(AppCrashException, self).__init__(msg)
|
|
|