Bug 28959: Add virtualshelves.public as a boolean
[koha.git] / Koha / Exceptions / Ill.pm
1 package Koha::Exceptions::Ill;
2
3 # This file is part of Koha.
4 #
5 # Koha is free software; you can redistribute it and/or modify it
6 # under the terms of the GNU General Public License as published by
7 # the Free Software Foundation; either version 3 of the License, or
8 # (at your option) any later version.
9 #
10 # Koha is distributed in the hope that it will be useful, but
11 # WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 # GNU General Public License for more details.
14 #
15 # You should have received a copy of the GNU General Public License
16 # along with Koha; if not, see <http://www.gnu.org/licenses>.
17
18 use Modern::Perl;
19
20 use Exception::Class (
21
22     'Koha::Exceptions::Ill' => {
23         description => 'Something went wrong!',
24     },
25     'Koha::Exceptions::Ill::InvalidBackendId' => {
26         isa => 'Koha::Exceptions::Ill',
27         description => "Invalid backend name required",
28     },
29     'Koha::Exceptions::Ill::NoTargetEmail' => {
30         isa => 'Koha::Exceptions::Ill',
31         description => "ILL partner library has no email address configured",
32     },
33     'Koha::Exceptions::Ill::NoLibraryEmail' => {
34         isa => 'Koha::Exceptions::Ill',
35         description => "Invalid backend name required",
36     }
37 );
38
39 =head1 NAME
40
41 Koha::Exceptions::Ill - Base class for ILL exceptions
42
43 =head1 Exceptions
44
45 =head2 Koha::Exceptions::Ill
46
47 Generic Ill exception
48
49 =head2 Koha::Exceptions::Ill::InvalidBackend
50
51 Exception to be used when the required ILL backend is invalid.
52
53 =head2 Koha::Exceptions::Ill::NoTargetEmail
54
55 Exception to be used when the ILL partner has no email address set.
56
57 =head2 Koha::Exceptions::Ill::NoLibraryEmail
58
59 Exception to be used when the current library has no email address set.
60
61 =cut
62
63 1;