Update of /cvsroot/http-webtest/HTTP-WebTest-Recorder/lib/HTTP/WebTest/Recorder
In directory sc8-pr-cvs1:/tmp/cvs-serv11763/lib/HTTP/WebTest/Recorder
Modified Files:
Exceptions.pm
Log Message:
Added raw response exception
Index: Exceptions.pm
===================================================================
RCS file: /cvsroot/http-webtest/HTTP-WebTest-Recorder/lib/HTTP/WebTest/Recorder/Exceptions.pm,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** Exceptions.pm 25 Jan 2003 14:54:52 -0000 1.1
--- Exceptions.pm 2 Feb 2003 00:01:07 -0000 1.2
***************
*** 12,17 ****
HTTP::WebTest::Recorder::Exception::Redirect =>
{ isa => 'HTTP::WebTest::Recorder::Exception',
! fields => [ 'url' ],
description => 'Redirect message' },
);
}
--- 12,22 ----
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) ],
+ description => 'Raw response message' },
);
}
|