File Coverage

blib/lib/Test/C2FIT/ParseException.pm
Criterion Covered Total %
statement 3 5 60.0
branch n/a
condition n/a
subroutine 1 2 50.0
pod 0 1 0.0
total 4 8 50.0


line stmt bran cond sub pod time code
1             # $Id: ParseException.pm,v 1.6 2006/06/16 15:20:56 tonyb Exp $
2             #
3             # Copyright (c) 2002-2005 Cunningham & Cunningham, Inc.
4             # Released under the terms of the GNU General Public License version 2 or later.
5             #
6             # Perl translation by Dave W. Smith
7             # Written by Tony Byrne
8              
9             package Test::C2FIT::ParseException;
10 4     4   22 use base 'Test::C2FIT::Exception';
  4         7  
  4         2216  
11              
12             sub getErrorOffset {
13 0     0 0   my $self = shift;
14 0           return $self->value();
15             }
16              
17             # Keep Perl happy.
18             1;