]> git.tdb.fi Git - libs/net.git/blobdiff - source/response.cpp
Exception changes
[libs/net.git] / source / response.cpp
index a5f95825c1c65fc8170552e4046083fea12db828..ede249b7e11afa467e5423f4c4a54faa091fc59c 100644 (file)
@@ -26,7 +26,7 @@ Response Response::parse(const string &str)
        unsigned lf = str.find('\n');
        vector<string> 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<Status>(lexical_cast<unsigned>(parts[1]));