Add hg.LookupError
authorBrendan Cully <brendan@kublai.com>
Sun, 01 Oct 2006 11:58:55 -0700
changeset 3216 5b7ed414affb
parent 3215 53e843840349
child 3217 dedddde58c5b
Add hg.LookupError
mercurial/repo.py
--- a/mercurial/repo.py
+++ b/mercurial/repo.py
@@ -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.