~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/errors.py

(gz) Merge 2.3 into 2.4 (Martin Packman)

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]