_exceptions.py
changeset 9543 39f981482e34
parent 9467 ad66d7b3fd48
parent 9517 3338b2205ea3
child 10280 2cdab5e33542
equal deleted inserted replaced
9520:78702b55c089 9543:39f981482e34
   178 
   178 
   179     :type txuuix: int
   179     :type txuuix: int
   180     :param txuuid: Unique identifier of the partialy undone transaction
   180     :param txuuid: Unique identifier of the partialy undone transaction
   181 
   181 
   182     :type errors: list
   182     :type errors: list
   183     :param errors: List of errors occured during undoing
   183     :param errors: List of errors occurred during undoing
   184     """
   184     """
   185     msg = u"The following error(s) occured while undoing transaction #%d : %s"
   185     msg = u"The following error(s) occurred while undoing transaction #%d : %s"
   186 
   186 
   187     def __init__(self, txuuid, errors):
   187     def __init__(self, txuuid, errors):
   188         super(UndoTransactionException, self).__init__(txuuid, errors)
   188         super(UndoTransactionException, self).__init__(txuuid, errors)
   189         self.txuuid = txuuid
   189         self.txuuid = txuuid
   190         self.errors = errors
   190         self.errors = errors