]> git.koha-community.org Git - koha.git/blob - Koha/Exceptions/Patron.pm
Bug 21998: Throw exception on bad pattern
[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;