~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/errors.py

  • Committer: Patch Queue Manager
  • Date: 2011-11-11 12:38:26 UTC
  • mfrom: (6256.1.1 dev_2.4_integration)
  • Revision ID: pqm@pqm.ubuntu.com-20111111123826-gi1x0z0wimt8rjkb
(gz) Merge 2.4 into dev (Martin Packman)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1579
1579
            problem we can raise the original error (value from sys.exc_info())
1580
1580
        """
1581
1581
        BzrError.__init__(self)
 
1582
        self.context = context
1582
1583
        self.reload_occurred = reload_occurred
1583
1584
        self.exc_info = exc_info
1584
1585
        self.orig_error = exc_info[1]