Bug 34438: Database update
[koha.git] / Koha / Exceptions / Booking.pm
1 package Koha::Exceptions::Booking;
2
3 use Modern::Perl;
4
5 use Exception::Class (
6     'Koha::Exceptions::Booking'        => { description => "Something went wrong!" },
7     'Koha::Exceptions::Booking::Clash' => {
8         isa         => 'Koha::Exceptions::Booking',
9         description => "Adding or updating the booking would result in a clash"
10     },
11 );
12
13 1;