diff options
| author | Adam Ierymenko <adam.ierymenko@gmail.com> | 2013-10-18 14:16:53 -0400 |
|---|---|---|
| committer | Adam Ierymenko <adam.ierymenko@gmail.com> | 2013-10-18 14:16:53 -0400 |
| commit | ca93b4a1ac9d07ea150572801fd47f9a0818abff (patch) | |
| tree | 8ec8916b82baab567a3d9cc66471b866f8ef1809 /node/PacketDecoder.hpp | |
| parent | 03b909603ae6010d7bf059de688c0cfe0f96a0a3 (diff) | |
| download | infinitytier-ca93b4a1ac9d07ea150572801fd47f9a0818abff.tar.gz infinitytier-ca93b4a1ac9d07ea150572801fd47f9a0818abff.zip | |
Clean up some stuff, including a few spots where exceptions were not being handled correctly.
Diffstat (limited to 'node/PacketDecoder.hpp')
| -rw-r--r-- | node/PacketDecoder.hpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/node/PacketDecoder.hpp b/node/PacketDecoder.hpp index e5035317..cb3522ff 100644 --- a/node/PacketDecoder.hpp +++ b/node/PacketDecoder.hpp @@ -100,8 +100,7 @@ public: * @throws std::out_of_range Range error processing packet (should be discarded) * @throws std::runtime_error Other error processing packet (should be discarded) */ - bool tryDecode(const RuntimeEnvironment *_r) - throw(std::out_of_range,std::runtime_error); + bool tryDecode(const RuntimeEnvironment *_r); /** * @return Time of packet receipt / start of decode |
