diff options
Diffstat (limited to 'src/Net/ClientConnection.h')
-rw-r--r-- | src/Net/ClientConnection.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Net/ClientConnection.h b/src/Net/ClientConnection.h index 88bdf09..bdd7872 100644 --- a/src/Net/ClientConnection.h +++ b/src/Net/ClientConnection.h @@ -21,7 +21,7 @@ #define MAD_NET_CLIENTCONNECTION_H_ #include "Connection.h" -#include <Common/Exception.h> +#include "Exception.h" namespace Mad { namespace Net { @@ -40,7 +40,7 @@ class ClientConnection : public Connection { public: ClientConnection() : daemon(0) {} - void connect(const IPAddress &address, bool daemon0 = false) throw(Common::Exception); + void connect(const IPAddress &address, bool daemon0 = false) throw(Exception); }; } |