Add not implemented exception class
This commit is contained in:
parent
b51cdd0d8a
commit
adc59bcbc7
1 changed files with 10 additions and 0 deletions
10
include/cserver/engine/not_implemented.hpp
Normal file
10
include/cserver/engine/not_implemented.hpp
Normal file
|
@ -0,0 +1,10 @@
|
|||
#include <stdexcept>
|
||||
|
||||
|
||||
namespace cserver::engine {
|
||||
|
||||
struct NotImplemented : std::runtime_error {
|
||||
using std::runtime_error::runtime_error;
|
||||
};
|
||||
|
||||
} // namespace cserver::engine
|
Loading…
Reference in a new issue