]> git-server-git.apps.pok.os.sepia.ceph.com Git - teuthology.git/commitdiff
Add GitError
authorZack Cerza <zack.cerza@inktank.com>
Tue, 12 Aug 2014 16:36:51 +0000 (10:36 -0600)
committerZack Cerza <zack.cerza@inktank.com>
Tue, 12 Aug 2014 16:36:51 +0000 (10:36 -0600)
Signed-off-by: Zack Cerza <zack.cerza@inktank.com>
teuthology/exceptions.py

index 4ace8b43caa756d897e94f8899b807b972d44724..6a92609a9532dac756dd63562164576035818488 100644 (file)
@@ -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