MoonState
include
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
:
9
PacketNotIdentified
()
10
: runtime_error(
"The packet identifier could not handle this packet"
){};
11
};
12
13
#endif
/* EXCEPTIONS_HPP */
PacketNotIdentified
Definition:
exceptions.hpp:7
PacketNotIdentified::PacketNotIdentified
PacketNotIdentified()
Definition:
exceptions.hpp:9
Generated by
1.8.14