From: Zack Cerza Date: Tue, 12 Aug 2014 16:36:51 +0000 (-0600) Subject: Add GitError X-Git-Tag: 1.1.0~1270 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=36a7e69a757f9393e1420086380ec72aa02dbd94;p=teuthology.git Add GitError Signed-off-by: Zack Cerza --- diff --git a/teuthology/exceptions.py b/teuthology/exceptions.py index 4ace8b43c..6a92609a9 100644 --- a/teuthology/exceptions.py +++ b/teuthology/exceptions.py @@ -11,3 +11,7 @@ class BranchNotFoundError(ValueError): repo_str = "" return "Branch '{branch}' not found{repo_str}!".format( branch=self.branch, repo_str=repo_str) + + +class GitError(RuntimeError): + pass