Bug 21395: Fix misc/admin/koha-preferences
[koha.git] / Koha / Exceptions / Ill.pm
blob0729fa47d2c20baac3ca61e6c89304ef29714bd2
1 package Koha::Exceptions::Ill;
3 # This file is part of Koha.
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.
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.
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>.
18 use Modern::Perl;
20 use Exception::Class (
22 'Koha::Exceptions::Ill' => {
23 description => 'Something went wrong!',
25 'Koha::Exceptions::Ill::InvalidBackendId' => {
26 isa => 'Koha::Exceptions::Ill',
27 description => "Invalid backend name required",
29 'Koha::Exceptions::Ill::NoTargetEmail' => {
30 isa => 'Koha::Exceptions::Ill',
31 description => "ILL partner library has no email address configured",
33 'Koha::Exceptions::Ill::NoLibraryEmail' => {
34 isa => 'Koha::Exceptions::Ill',
35 description => "Invalid backend name required",
39 =head1 NAME
41 Koha::Exceptions::Ill - Base class for ILL exceptions
43 =head1 Exceptions
45 =head2 Koha::Exceptions::Ill
47 Generic Ill exception
49 =head2 Koha::Exceptions::Ill::InvalidBackend
51 Exception to be used when the required ILL backend is invalid.
53 =head2 Koha::Exceptions::Ill::NoTargetEmail
55 Exception to be used when the ILL partner has no email address set.
57 =head2 Koha::Exceptions::Ill::NoLibraryEmail
59 Exception to be used when the current library has no email address set.
61 =cut