ShlubluLib  v0.5
ShlubluLib is a lightweight, modular, general purpose, open-source C++ library for Linux and Windows.
NotImplementedError.h
Go to the documentation of this file.
1 #pragma once
2 
9 #include <stdexcept>
10 #include <string>
11 
12 namespace shlublu
13 {
14 
18  class NotImplementedError : public std::logic_error
19  {
20  public:
25  explicit NotImplementedError(std::string const& message)
26  : logic_error(message.c_str())
27  {}
28 
33  explicit NotImplementedError(char const* message)
34  : logic_error(message)
35  {}
36  };
37 
38 }
shlublu::NotImplementedError::NotImplementedError
NotImplementedError(std::string const &message)
Constructor.
Definition: NotImplementedError.h:25
shlublu
shlublu::NotImplementedError
Components of this library that have no implementation for the running platform use this exception at...
Definition: NotImplementedError.h:19
shlublu::NotImplementedError::NotImplementedError
NotImplementedError(char const *message)
Constructor.
Definition: NotImplementedError.h:33