summaryrefslogtreecommitdiff
path: root/include/Domain.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/Domain.h')
-rw-r--r--include/Domain.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/Domain.h b/include/Domain.h
index ef103c2..3a51d9f 100644
--- a/include/Domain.h
+++ b/include/Domain.h
@@ -10,7 +10,7 @@ class Domain : public Base {
virtual ~Domain();
static Domain * find_domain(const String & url);
void OnTop();
- virtual void Do(const HttpRequest &) = 0;
+ virtual void Do(const HttpRequest &, HttpResponse *) throw (GeneralException) = 0;
private:
Domain * find_domain_r(const String & url);
static Domain * head;