Bug 7317: Handle missing email addresses gracefuly
[koha.git] / Koha / Exceptions / Ill.pm
blob2084ed06e51cecd55de6260835c5b3073bdfad26
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 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.
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.
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.
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