File Coverage

blib/lib/Object/NotFoundException.pm
Criterion Covered Total %
statement 6 6 100.0
branch n/a
condition n/a
subroutine 2 2 100.0
pod n/a
total 8 8 100.0


line stmt bran cond sub pod time code
1             # ----------------------------------------------------------------------------#
2             # Object::NotFoundException #
3             # #
4             # Copyright (c) 2001-02 Arun Kumar U . #
5             # All rights reserved. #
6             # #
7             # This program is free software; you can redistribute it and/or #
8             # modify it under the same terms as Perl itself. #
9             # ----------------------------------------------------------------------------#
10              
11             package Object::NotFoundException;
12              
13 1     1   1091 use Error;
  1         8764  
  1         23  
14 1     1   84 use base qw( Error::Simple );
  1         3  
  1         1087  
15              
16             1;