Bug 20473: Whitespace
[koha.git] / Koha / Exceptions / MarcOverlayRule.pm
1 package Koha::Exceptions::MarcOverlayRule;
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 Koha::Exception;
21
22 use Exception::Class (
23
24     'Koha::Exceptions::MarcOverlayRule' => {
25         isa => 'Koha::Exception',
26     },
27     'Koha::Exceptions::MarcOverlayRule::InvalidTagRegExp' => {
28         isa => 'Koha::Exceptions::MarcOverlayRule',
29         description => 'Invalid regular expression for tag'
30     },
31     'Koha::Exceptions::MarcOverlayRule::InvalidControlFieldActions' => {
32         isa => 'Koha::Exceptions::MarcOverlayRule',
33         description => 'Invalid control field actions'
34     }
35 );
36
37 =head1 NAME
38
39 Koha::Exceptions::MarcOverlayRule - Base class for MarcOverlayRule exceptions
40
41 =head1 Exceptions
42
43 =head2 Koha::Exceptions::MarcOverlayRule
44
45 Generic MarcOverlayRule exception
46
47 =head2 Koha::Exceptions::MarcOverlayRule::InvalidTagRegExp
48
49 Exception for rule validation when rule tag is an invalid regular expression
50
51 =head2 Koha::Exceptions::MarcOverlayRule::InvalidControlFieldActions
52
53 Exception for rule validation for control field rules with invalid combination of actions
54
55 =cut
56
57 1;