File Coverage

blib/lib/Password/Policy/Exception/InvalidAlgorithm.pm
Criterion Covered Total %
statement 9 10 90.0
branch n/a
condition n/a
subroutine 3 4 75.0
pod 0 1 0.0
total 12 15 80.0


line stmt bran cond sub pod time code
1             package Password::Policy::Exception::InvalidAlgorithm;
2             $Password::Policy::Exception::InvalidAlgorithm::VERSION = '0.06';
3 4     4   29 use strict;
  4         8  
  4         129  
4 4     4   16 use warnings;
  4         8  
  4         1697  
5              
6 4     4   19 use parent 'Password::Policy::Exception';
  4         6  
  4         17  
7              
8 0     0 0   sub error { return "You specified an algorithm that is not available"; }
9              
10             1;
11              
12             __END__