]> git.tdb.fi Git - libs/net.git/blobdiff - source/net/communicator.h
Adjust exception classes and messages
[libs/net.git] / source / net / communicator.h
index 62521ee8926346fed24dabccc9a7af3189efff39..575ec84e6c3a0f2be7ea77039041a52b919c069d 100644 (file)
@@ -1,6 +1,7 @@
 #ifndef MSP_NET_COMMUNICATOR_H_
 #define MSP_NET_COMMUNICATOR_H_
 
+#include <msp/core/except.h>
 #include <sigc++/signal.h>
 #include "protocol.h"
 
@@ -9,10 +10,10 @@ namespace Net {
 
 class StreamSocket;
 
-class sequence_error: public std::logic_error
+class sequence_error: public invalid_state
 {
 public:
-       sequence_error(const std::string &w): std::logic_error(w) { }
+       sequence_error(const std::string &w): invalid_state(w) { }
 };
 
 class incompatible_protocol: public std::runtime_error