Bug 26457: Throw exception if update of issues table fails
[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     'Koha::Exceptions::Patron::FailedDeleteAnonymousPatron' => {
13         description => "Deleting patron failed, AnonymousPatron is not deleteable"
14     },
15 );
16
17 1;