# HG changeset patch # User Pierre-Yves David # Date 1413450372 25200 # Node ID 2bd51e61c65ea309c74ee1881e61433be3c04739 # Parent 21c44c1aed87af62069b23eb9a524170869de6ba repoview: add a FilteredRepoLookupError This exception is a more precise RepoLookupError that will allow us to issue a special message when we end up accessing a filtered revision. diff -r 21c44c1aed87 -r 2bd51e61c65e mercurial/error.py --- a/mercurial/error.py Thu Oct 16 02:05:06 2014 -0700 +++ b/mercurial/error.py Thu Oct 16 02:06:12 2014 -0700 @@ -65,6 +65,9 @@ class RepoLookupError(RepoError): pass +class FilteredRepoLookupError(RepoLookupError): + pass + class CapabilityError(RepoError): pass