# HG changeset patch # User Brendan Cully # Date 2006-10-01 18:58:55 # Node ID 5b7ed414affb90af2c0aae0c1fbcb43ad1b1dff4 # Parent 53e8438403491dcbd2d50f8bf94f2924002bd7fa Add hg.LookupError diff --git a/mercurial/repo.py b/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.