changeset 3230:5b7ed414affb

Add hg.LookupError
author Brendan Cully <brendan@kublai.com>
date Sun, 01 Oct 2006 11:58:55 -0700
parents 53e843840349
children dedddde58c5b
files mercurial/repo.py
diffstat 1 files changed, 3 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- 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.