View | Details | Raw Unified | Return to bug 40824
Collapse All | Expand All

(-)a/Koha/Exceptions/Password.pm (-1 / +4 lines)
Lines 48-54 use Exception::Class ( Link Here
48
    'Koha::Exceptions::Password::NoCategoryProvided' => {
48
    'Koha::Exceptions::Password::NoCategoryProvided' => {
49
        isa         => 'Koha::Exceptions::Password',
49
        isa         => 'Koha::Exceptions::Password',
50
        description => 'You must provide a patron\'s category to validate password\'s strength and length'
50
        description => 'You must provide a patron\'s category to validate password\'s strength and length'
51
    }
51
    },
52
    'Koha::Exceptions::Password::UsedBefore' => {
53
        isa => 'Koha::Exceptions::Password',
54
    },
52
);
55
);
53
56
54
sub full_message {
57
sub full_message {
(-)a/Koha/Exceptions/Password/UsedBefore.pm (-1 / +12 lines)
Line 0 Link Here
0
- 
1
package Koha::Exceptions::Password::UsedBefore;
2
3
use Modern::Perl;
4
5
use Exception::Class (
6
    'Koha::Exceptions::Password::UsedBefore' => {
7
        isa => 'Koha::Exceptions::Exception',
8
        description => 'Password has been used before',
9
    },
10
);
11
12
1; 

Return to bug 40824