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

(-)a/Koha/Exceptions/Password.pm (-3 / +2 lines)
Lines 35-43 use Exception::Class ( Link Here
35
        isa => 'Koha::Exceptions::Password',
35
        isa => 'Koha::Exceptions::Password',
36
        description => 'Password is too weak'
36
        description => 'Password is too weak'
37
    },
37
    },
38
    'Koha::Exceptions::Password::TrailingWhitespace' => {
38
    'Koha::Exceptions::Password::WhitespaceCharacters' => {
39
        isa => 'Koha::Exceptions::Password',
39
        isa => 'Koha::Exceptions::Password',
40
        description => 'Password contains trailing whitespace character(s)'
40
        description => 'Password contains leading/trailing whitespace character(s)'
41
    }
41
    }
42
);
42
);
43
43
44
- 

Return to bug 21233