~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/errors.py

  • Committer: Martin Packman
  • Date: 2011-11-10 17:24:13 UTC
  • mfrom: (5609.48.12 2.3)
  • mto: (6015.44.5 2.4)
  • mto: This revision was merged to the branch mainline in revision 6257.
  • Revision ID: martin.packman@canonical.com-20111110172413-83hs5lb39y6z23sy
Merge 2.3 into 2.4

Show diffs side-by-side

added added

removed removed

Lines of Context:
1572
1572
            problem we can raise the original error (value from sys.exc_info())
1573
1573
        """
1574
1574
        BzrError.__init__(self)
 
1575
        self.context = context
1575
1576
        self.reload_occurred = reload_occurred
1576
1577
        self.exc_info = exc_info
1577
1578
        self.orig_error = exc_info[1]