comparison mercurial/repository.py @ 39776:cb65d4b7e429

error: introduce StorageError Errors in revlogs are often represented by RevlogError. It's fine for revlogs to raise a revlog-specific exception. But in the context of multiple storage backends, it doesn't make sense to be throwing or catching an exception with "revlog" in its name when revlogs may not even be in play. This commit introduces a new generic StorageError type for representing errors in the storage layer. RevlogError is an instance of this type. Interface documentation and tests referencing RevlogError has been updated to specify StorageError should be used. .. api:: ``error.StorageError`` has been introduced to represent errors in storage. It should be used in place of ``error.RevlogError`` unless the error is known to come from a revlog. Differential Revision: https://phab.mercurial-scm.org/D4654
author Gregory Szorc <gregory.szorc@gmail.com>
date Tue, 18 Sep 2018 16:45:13 -0700
parents e4e881572382
children a6b3c4c1019f
comparison
equal deleted inserted replaced
39775:974592474dee 39776:cb65d4b7e429
569 """ 569 """
570 570
571 def checkhash(fulltext, node, p1=None, p2=None, rev=None): 571 def checkhash(fulltext, node, p1=None, p2=None, rev=None):
572 """Validate the stored hash of a given fulltext and node. 572 """Validate the stored hash of a given fulltext and node.
573 573
574 Raises ``error.RevlogError`` is hash validation fails. 574 Raises ``error.StorageError`` is hash validation fails.
575 """ 575 """
576 576
577 def revision(node, raw=False): 577 def revision(node, raw=False):
578 """"Obtain fulltext data for a node. 578 """"Obtain fulltext data for a node.
579 579