X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fresponse.cpp;h=ede249b7e11afa467e5423f4c4a54faa091fc59c;hb=c8df43e7794dc82d5604dfa612e464bbc5ca3cdd;hp=fe7469d0780d32372f392d80bacf5fbe65be434c;hpb=df006bfbbe8e8b49a52296f42894d4a452ed4c90;p=libs%2Fnet.git diff --git a/source/response.cpp b/source/response.cpp index fe7469d..ede249b 100644 --- a/source/response.cpp +++ b/source/response.cpp @@ -1,10 +1,3 @@ -/* $Id$ - -This file is part of libmsphttp -Copyright © 2008 Mikkosoft Productions, Mikko Rasa -Distributed under the LGPL -*/ - #include #include #include "response.h" @@ -33,7 +26,7 @@ Response Response::parse(const string &str) unsigned lf = str.find('\n'); vector parts = split(str.substr(0, lf), ' ', 2); if(parts.size()<2) - throw InvalidParameterValue("Invalid response"); + throw invalid_argument("Response::parse"); result.http_version = parse_version(parts[0]); result.status = static_cast(lexical_cast(parts[1]));