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

use strict;
use warnings;

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

sub error { return "The specified password was empty"; }

1;



=pod

=head1 NAME

Password::Policy::Exception::EmptyPassword

=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__