diff mercurial/repo.py @ 3216:5b7ed414affb

Add hg.LookupError
author Brendan Cully <brendan@kublai.com>
date Sun, 01 Oct 2006 11:58:55 -0700
parents 345bac2bc4ec
children 01d98d68d697
line wrap: on
line diff
--- 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.