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

Side by Side Diff: scripts/slave/recipe_modules/auto_bisect/exceptions.py

Issue 2247373002: Refactor stages 1, 2 and test_api overhaul. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: Rebasing, addressing feedback. Created 4 years, 3 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 # Copyright 2016 The Chromium Authors. All rights reserved.
prasadv 2016/09/09 18:52:30 By looking at the file I (may be other too) get co
RobertoCN 2016/09/13 22:11:41 Done.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
4
5 """Custom exceptions for bisect."""
6
7 class BisectException(Exception):
8 pass
9
10 class InconclusiveBisectException(BisectException):
11 """To be raised when a bisect cannot identify a culprit"""
12 pass
13
14 class UntestableRevisionException(BisectException):
15 """When a specific revision cannot be built or tested."""
16 pass
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698