Bug 22521: DBRev 18.12.00.055
[koha.git] / Koha / Exceptions / Library.pm
1 package Koha::Exceptions::Library;
2
3 use Modern::Perl;
4
5 use Exception::Class (
6
7     'Koha::Exceptions::Library::Exception' => {
8         description => 'Something went wrong!',
9     },
10
11     'Koha::Exceptions::Library::NotFound' => {
12         isa => 'Koha::Exceptions::Library::Exception',
13         description => 'Library not found',
14     },
15 );
16
17 1;