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>
This commit is contained in:
parent
9919d7afd4
commit
fa9750e24d
1 changed files with 1 additions and 3 deletions
|
@ -317,10 +317,8 @@ sub add_credit {
|
|||
Koha::Exceptions::Account::UnrecognisedType->throw(
|
||||
error => 'Type of credit not recognised' );
|
||||
}
|
||||
else {
|
||||
$_->rethrow;
|
||||
}
|
||||
}
|
||||
$_->rethrow;
|
||||
};
|
||||
|
||||
return $line;
|
||||
|
|
Loading…
Reference in a new issue