Update of /cvsroot/http-webtest/HTTP-WebTest-Recorder/lib/HTTP/WebTest/Recorder
In directory sc8-pr-cvs1:/tmp/cvs-serv28049
Modified Files:
Exceptions.pm
Log Message:
5.8.0 compatibility fixes
Index: Exceptions.pm
===================================================================
RCS file: /cvsroot/http-webtest/HTTP-WebTest-Recorder/lib/HTTP/WebTest/Recorder/Exceptions.pm,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** Exceptions.pm 4 Mar 2003 12:43:40 -0000 1.3
--- Exceptions.pm 4 Apr 2003 21:07:56 -0000 1.4
***************
*** 6,19 ****
BEGIN {
! %EXC = ( HTTP::WebTest::Recorder::Exception =>
{ description =>
'Generic base class for all Investion exceptions' },
! HTTP::WebTest::Recorder::Exception::Redirect =>
{ isa => 'HTTP::WebTest::Recorder::Exception',
fields => [ qw(url) ],
description => 'Redirect message' },
! HTTP::WebTest::Recorder::Exception::RawResponse =>
{ isa => 'HTTP::WebTest::Recorder::Exception',
fields => [ qw(headers content) ],
--- 6,19 ----
BEGIN {
! %EXC = ( 'HTTP::WebTest::Recorder::Exception' =>
{ description =>
'Generic base class for all Investion exceptions' },
! 'HTTP::WebTest::Recorder::Exception::Redirect' =>
{ isa => 'HTTP::WebTest::Recorder::Exception',
fields => [ qw(url) ],
description => 'Redirect message' },
! 'HTTP::WebTest::Recorder::Exception::RawResponse' =>
{ isa => 'HTTP::WebTest::Recorder::Exception',
fields => [ qw(headers content) ],
|