chiark / gitweb /
Make a common superclass for all StGit exceptions
[stgit] / stgit / config.py
index 51818bd37c2977dba2552cb292605cfd15618923..3eabc8c3a3abef4be9586d933ff573efe0dd7e17 100644 (file)
@@ -20,9 +20,10 @@ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
 
 import os, re
 from stgit import basedir
+from stgit.exception import *
 from stgit.run import *
 
-class GitConfigException(Exception):
+class GitConfigException(StgException):
     pass
 
 class GitConfig: