Changeset 3201
- Timestamp:
- 06/22/07 11:11:02 (2 years ago)
- Files:
-
- trunk/dabo/biz/dBizobj.py (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/dabo/biz/dBizobj.py
r3127 r3201 743 743 744 744 # run the requery 745 uiException = None 745 746 cursor = self._CurrentCursor 746 747 try: … … 756 757 raise dException.DBQueryException, e 757 758 759 except dException.NoRecordsException: 760 # No need to abort the transaction because of this, but 761 # we still need to pass the exception to the UI 762 uiException = dException.NoRecordsException 763 758 764 except dException.dException, e: 759 765 # Something failed; reset things. … … 770 776 pass 771 777 self.afterRequery() 778 if uiException: 779 raise uiException 772 780 773 781
