~ubuntu-branches/ubuntu/precise/mercurial/precise-updates

« back to all changes in this revision

Viewing changes to mercurial/error.py

  • Committer: Bazaar Package Importer
  • Author(s): Javi Merino
  • Date: 2011-03-06 16:01:58 UTC
  • mto: (28.1.2 sid) (1.1.14)
  • mto: This revision was merged to the branch mainline in revision 32.
  • Revision ID: james.westby@ubuntu.com-20110306160158-y94pzpmtd7b1xgjk
Tags: upstream-1.8
ImportĀ upstreamĀ versionĀ 1.8

Show diffs side-by-side

added added

removed removed

Lines of Context:
51
51
class CapabilityError(RepoError):
52
52
    pass
53
53
 
 
54
class RequirementError(RepoError):
 
55
    """Exception raised if .hg/requires has an unknown entry."""
 
56
    pass
 
57
 
54
58
class LockError(IOError):
55
59
    def __init__(self, errno, strerror, filename, desc):
56
60
        IOError.__init__(self, errno, strerror, filename)