# HG changeset patch # User Jordi GutiƩrrez Hermoso # Date 1432239634 14400 # Node ID 4311e78a4609ec0df4b3b0a75ab6d130e5df258c # Parent 821e664924dcaa8bdd1e559ebcf55363a6c87655 error: derive RevlogError from HintException instead of Exception This will allow us to now pass hints into this exception. diff -r 821e664924dc -r 4311e78a4609 mercurial/error.py --- a/mercurial/error.py Thu May 21 16:28:06 2015 -0400 +++ b/mercurial/error.py Thu May 21 16:20:34 2015 -0400 @@ -18,7 +18,7 @@ Exception.__init__(self, *args) self.hint = kw.get('hint') -class RevlogError(Exception): +class RevlogError(HintException): pass class FilteredIndexError(IndexError):