X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fresponse.cpp;h=ede249b7e11afa467e5423f4c4a54faa091fc59c;hb=c8df43e7794dc82d5604dfa612e464bbc5ca3cdd;hp=a5f95825c1c65fc8170552e4046083fea12db828;hpb=c3bc44e20b80683ec1e8296a449804ff6c5f7aff;p=libs%2Fnet.git diff --git a/source/response.cpp b/source/response.cpp index a5f9582..ede249b 100644 --- a/source/response.cpp +++ b/source/response.cpp @@ -26,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]));