]> git.koha-community.org Git - koha.git/blob - Koha/Exceptions/Library.pm
Bug 23321: Add cash register support to paycollect
[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;