The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
package Password::Policy::Exception::InsufficientLowercase;
{
  $Password::Policy::Exception::InsufficientLowercase::VERSION = '0.02';
}

use strict;
use warnings;

use parent 'Password::Policy::Exception';

sub error { return "The specified password did not have enough lowercase ASCII characters"; }

1;



=pod

=head1 NAME

Password::Policy::Exception::InsufficientLowercase

=head1 VERSION

version 0.02

=head1 AUTHOR

Andrew Nelson <anelson@cpan.org>

=head1 COPYRIGHT AND LICENSE

This software is copyright (c) 2012 by Andrew Nelson.

This is free software; you can redistribute it and/or modify it under
the same terms as the Perl 5 programming language system itself.

=cut


__END__