# $Id: ParseException.pm,v 1.3 2005/04/27 13:16:29 tonyb Exp $ # # Copyright (c) 2002-2005 Cunningham & Cunningham, Inc. # Released under the terms of the GNU General Public License version 2 or later. # # Perl translation by Dave W. Smith # Written by Tony Byrne package Test::C2FIT::ParseException; use base 'Test::C2FIT::Exception'; sub getErrorOffset { my $self = shift; return $self->value(); } # Keep Perl happy. 1;