Bug 21233: Add Koha::Exceptions::Password
[koha.git] / Koha / Exceptions / Account.pm
1 package Koha::Exceptions::Account;
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::Account' => {
23         description => 'Something went wrong!',
24     },
25     'Koha::Exceptions::Account::IsNotCredit' => {
26         isa => 'Koha::Exceptions::Account',
27         description => 'Account line is not a credit'
28     },
29     'Koha::Exceptions::Account::IsNotDebit' => {
30         isa => 'Koha::Exceptions::Account',
31         description => 'Account line is not a credit'
32     },
33     'Koha::Exceptions::Account::NoAvailableCredit' => {
34         isa => 'Koha::Exceptions::Account',
35         description => 'No outstanding credit'
36     }
37 );
38
39 =head1 NAME
40
41 Koha::Exceptions::Account - Base class for Account exceptions
42
43 =head1 Exceptions
44
45 =head2 Koha::Exceptions::Account
46
47 Generic Account exception
48
49 =head2 Koha::Exceptions::Account::IsNotCredit
50
51 Exception to be used when an action on an account line requires it to be a
52 credit and it isn't.
53
54 =head2 Koha::Exceptions::Account::IsNotDebit
55
56 Exception to be used when an action on an account line requires it to be a
57 debit and it isn't.
58
59 =head2 Koha::Exceptions::Account::NoAvailableCredit
60
61 Exception to be used when a credit has no amount outstanding and is required
62 to be applied to outstanding debits.
63
64 =cut
65
66 1;