line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Password::Policy::Exception::EmptyPassword; |
2
|
|
|
|
|
|
|
{ |
3
|
|
|
|
|
|
|
$Password::Policy::Exception::EmptyPassword::VERSION = '0.02'; |
4
|
|
|
|
|
|
|
} |
5
|
|
|
|
|
|
|
|
6
|
11
|
|
|
11
|
|
64
|
use strict; |
|
11
|
|
|
|
|
22
|
|
|
11
|
|
|
|
|
377
|
|
7
|
11
|
|
|
11
|
|
58
|
use warnings; |
|
11
|
|
|
|
|
21
|
|
|
11
|
|
|
|
|
312
|
|
8
|
|
|
|
|
|
|
|
9
|
11
|
|
|
11
|
|
3824
|
use parent 'Password::Policy::Exception'; |
|
11
|
|
|
|
|
1545
|
|
|
11
|
|
|
|
|
175
|
|
10
|
|
|
|
|
|
|
|
11
|
7
|
|
|
7
|
0
|
82
|
sub error { return "The specified password was empty"; } |
12
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
1; |
14
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
=pod |
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
=head1 NAME |
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
Password::Policy::Exception::EmptyPassword |
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
=head1 VERSION |
24
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
version 0.02 |
26
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
=head1 AUTHOR |
28
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
Andrew Nelson |
30
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
=head1 COPYRIGHT AND LICENSE |
32
|
|
|
|
|
|
|
|
33
|
|
|
|
|
|
|
This software is copyright (c) 2012 by Andrew Nelson. |
34
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
This is free software; you can redistribute it and/or modify it under |
36
|
|
|
|
|
|
|
the same terms as the Perl 5 programming language system itself. |
37
|
|
|
|
|
|
|
|
38
|
|
|
|
|
|
|
=cut |
39
|
|
|
|
|
|
|
|
40
|
|
|
|
|
|
|
|
41
|
|
|
|
|
|
|
__END__ |