From 36a7e69a757f9393e1420086380ec72aa02dbd94 Mon Sep 17 00:00:00 2001 From: Zack Cerza Date: Tue, 12 Aug 2014 10:36:51 -0600 Subject: [PATCH] Add GitError Signed-off-by: Zack Cerza --- teuthology/exceptions.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/teuthology/exceptions.py b/teuthology/exceptions.py index 4ace8b43ca..6a92609a95 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 -- 2.39.5