Bug 30518: Correct DateTime maths for needs_advancing
[koha.git] / Koha / Exceptions / Checkout.pm
1 package Koha::Exceptions::Checkout;
2
3 use Modern::Perl;
4
5 use Exception::Class (
6     'Koha::Exceptions::Checkout' => {
7         description => "Something went wrong!"
8     },
9     'Koha::Exceptions::Checkout::FailedRenewal' => {
10         isa         => 'Koha::Exceptions::Checkout',
11         description => "Renewing checkout failed"
12     },
13 );
14
15 1;