Bug 22521: DBRev 18.12.00.055
[koha.git] / Koha / Exceptions / Patron.pm
1 package Koha::Exceptions::Patron;
2
3 use Modern::Perl;
4
5 use Exception::Class (
6     'Koha::Exceptions::Patron' => {
7         description => "Something went wrong!"
8     },
9     'Koha::Exceptions::Patron::FailedDelete' => {
10         description => "Deleting patron failed"
11     },
12 );
13
14 1;