Bug 34316: Add_credit should rethrow an exception correctly

Found while running Items.t on top of 33608.
Another exception was thrown but not rethrown.

Signed-off-by: Marcel de Rooy <m.de.rooy@rijksmuseum.nl>
Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io>
(cherry picked from commit fa9750e24d)
Signed-off-by: Fridolin Somers <fridolin.somers@biblibre.com>
(cherry picked from commit 2b1b8884cc)
Signed-off-by: Pedro Amorim <pedro.amorim@ptfs-europe.com>
This commit is contained in:
Marcel de Rooy 2023-07-20 07:45:05 +00:00 committed by Pedro Amorim
parent 3ab7309e67
commit b431cd1d14

View file

@ -310,10 +310,8 @@ sub add_credit {
Koha::Exceptions::Account::UnrecognisedType->throw(
error => 'Type of credit not recognised' );
}
else {
$_->rethrow;
}
}
$_->rethrow;
};
return $line;