]> git.tdb.fi Git - libs/net.git/blobdiff - source/net/communicator.h
Remove unnecessary destructors from exception classes
[libs/net.git] / source / net / communicator.h
index e4869b29015ef0cf5146e0bea983506f3c569e4b..62521ee8926346fed24dabccc9a7af3189efff39 100644 (file)
@@ -13,14 +13,12 @@ class sequence_error: public std::logic_error
 {
 public:
        sequence_error(const std::string &w): std::logic_error(w) { }
-       virtual ~sequence_error() throw() { }
 };
 
 class incompatible_protocol: public std::runtime_error
 {
 public:
        incompatible_protocol(const std::string &w): std::runtime_error(w) { }
-       virtual ~incompatible_protocol() throw() { }
 };