Add hg.LookupError
authorBrendan Cully <brendan@kublai.com>
Sun, 01 Oct 2006 11:58:55 -0700
changeset 3224 5b7ed414affb
parent 3223 53e843840349
child 3225 dedddde58c5b
Add hg.LookupError
mercurial/repo.py
--- a/mercurial/repo.py	Sun Oct 01 19:26:33 2006 +0200
+++ b/mercurial/repo.py	Sun Oct 01 11:58:55 2006 -0700
@@ -9,6 +9,9 @@
 class RepoError(Exception):
     pass
 
+class LookupError(RepoError):
+    pass
+
 class repository(object):
     def capable(self, name):
         '''tell whether repo supports named capability.