Bug 22521: DBRev 18.12.00.055
[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 under the
6 # terms of the GNU General Public License as published by the Free Software
7 # Foundation; either version 3 of the License, or (at your option) any later
8 # version.
9 #
10 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
11 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
12 # A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
13 #
14 # You should have received a copy of the GNU General Public License along
15 # with Koha; if not, write to the Free Software Foundation, Inc.,
16 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
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;