File Coverage

blib/lib/WWW/Postini/Exception/UnexpectedResponse.pm
Criterion Covered Total %
statement 12 12 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod n/a
total 16 16 100.0


line stmt bran cond sub pod time code
1             package WWW::Postini::Exception::UnexpectedResponse;
2            
3 1     1   5 use strict;
  1         1  
  1         32  
4 1     1   12 use warnings;
  1         2  
  1         22  
5            
6 1     1   6 use WWW::Postini::Exception;
  1         1  
  1         39  
7            
8 1     1   5 use vars qw( @ISA $VERSION );
  1         2  
  1         75  
9            
10             @ISA = qw( WWW::Postini::Exception );
11             $VERSION = '0.01';
12            
13             1;
14            
15             __END__