Bug 32394: (follow-up) Add param for Koha::BackgroundJob::StageMARCForImport->enqueue
[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 Koha::Exception;
21
22 use Exception::Class (
23
24     'Koha::Exceptions::Ill' => {
25         isa => 'Koha::Exception',
26     },
27     'Koha::Exceptions::Ill::InvalidBackendId' => {
28         isa => 'Koha::Exceptions::Ill',
29         description => "Invalid backend name required",
30     },
31     'Koha::Exceptions::Ill::NoTargetEmail' => {
32         isa => 'Koha::Exceptions::Ill',
33         description => "ILL partner library has no email address configured",
34     },
35     'Koha::Exceptions::Ill::NoLibraryEmail' => {
36         isa => 'Koha::Exceptions::Ill',
37         description => "Invalid backend name required",
38     }
39 );
40
41 =head1 NAME
42
43 Koha::Exceptions::Ill - Base class for ILL exceptions
44
45 =head1 Exceptions
46
47 =head2 Koha::Exceptions::Ill
48
49 Generic Ill exception
50
51 =head2 Koha::Exceptions::Ill::InvalidBackend
52
53 Exception to be used when the required ILL backend is invalid.
54
55 =head2 Koha::Exceptions::Ill::NoTargetEmail
56
57 Exception to be used when the ILL partner has no email address set.
58
59 =head2 Koha::Exceptions::Ill::NoLibraryEmail
60
61 Exception to be used when the current library has no email address set.
62
63 =cut
64
65 1;