Bug 1150527 - Remove unusued InstallGeckoError type; r?automatedtester draft
authorAndreas Tolfsen <ato@mozilla.com>
Wed, 16 Nov 2016 16:27:19 +0000
changeset 441653 6d7ec85b0282ad448ec7075a4dd6bb3f004b62af
parent 441652 8943b92a0b9d98d12f7c020dbea6bb34371a9053
child 537603 fce93b52b80d92c2516db6fac1cd2c237e023fb4
push id36481
push userbmo:ato@mozilla.com
push dateSun, 20 Nov 2016 15:09:54 +0000
reviewersautomatedtester
bugs1150527
milestone53.0a1
Bug 1150527 - Remove unusued InstallGeckoError type; r?automatedtester It does not appear to be used in m-c. MozReview-Commit-ID: EAr0g3VJNi4
testing/marionette/client/marionette_driver/errors.py
--- a/testing/marionette/client/marionette_driver/errors.py
+++ b/testing/marionette/client/marionette_driver/errors.py
@@ -1,19 +1,15 @@
 # This Source Code Form is subject to the terms of the Mozilla Public
 # License, v. 2.0. If a copy of the MPL was not distributed with this
 # file, You can obtain one at http://mozilla.org/MPL/2.0/.
 
 import traceback
 
 
-class InstallGeckoError(Exception):
-    pass
-
-
 class MarionetteException(Exception):
 
     """Raised when a generic non-recoverable exception has occured."""
 
     status = "webdriver error"
 
     def __init__(self, message=None, cause=None, stacktrace=None):
         """Construct new MarionetteException instance.