exceptions.hpp
Go to the documentation of this file.
1 #ifndef EXCEPTIONS_HPP
2 #define EXCEPTIONS_HPP
3 
4 #include <exception>
5 #include <stdexcept>
6 
7 class PacketNotIdentified : public std::runtime_error {
8 public:
10  : runtime_error("The packet identifier could not handle this packet"){};
11 };
12 
13 #endif /* EXCEPTIONS_HPP */