Bug 20473: Whitespace
[koha.git] / Koha / Exceptions / ClubHold.pm
1 package Koha::Exceptions::ClubHold;
2
3 use Modern::Perl;
4
5 use Koha::Exception;
6
7 use Exception::Class (
8     'Koha::Exceptions::ClubHold' => {
9         isa => 'Koha::Exception',
10     },
11     'Koha::Exceptions::ClubHold::NoPatrons' => {
12         isa => 'Koha::Exceptions::ClubHold',
13         description => "Cannot place a hold on a club without patrons.",
14     },
15 );
16
17 1;