X-Git-Url: http://git.tdb.fi/?p=libs%2Fnet.git;a=blobdiff_plain;f=source%2Fhttp%2Fclient.h;fp=source%2Fhttp%2Fclient.h;h=c8b154c728f56627c96454b42de767835f602246;hp=ee10f8c1cb5a0e389d860c6b9c59ee6a45aeb9a4;hb=add5c00b0b8a184c35473c20a65fa676525cf3f8;hpb=debe1004676d5431e571d9c4361072661dcc88c4 diff --git a/source/http/client.h b/source/http/client.h index ee10f8c..c8b154c 100644 --- a/source/http/client.h +++ b/source/http/client.h @@ -9,6 +9,13 @@ namespace Msp { namespace Http { +class client_busy: public std::logic_error +{ +public: + client_busy(): std::logic_error(std::string()) { } + virtual ~client_busy() throw() { } +}; + class Request; class Response;