summaryrefslogtreecommitdiff
path: root/src/lib/server.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/server.h')
-rw-r--r--src/lib/server.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/lib/server.h b/src/lib/server.h
index 68de3c2f0..9be47bd94 100644
--- a/src/lib/server.h
+++ b/src/lib/server.h
@@ -32,6 +32,7 @@
#include <boost/optional.hpp>
#include <libxml++/libxml++.h>
#include "log.h"
+#include "exceptions.h"
class Socket;
@@ -91,7 +92,7 @@ private:
int _threads;
};
-class Server : public boost::noncopyable
+class Server : public ExceptionStore, public boost::noncopyable
{
public:
Server (boost::shared_ptr<Log> log, bool verbose);