not_implemented_exception.hpp 314 B

12345678910111213
  1. #pragma once
  2. #include "../exception.hpp"
  3. namespace nkg::exceptions {
  4. class not_implemented_exception : public ::nkg::exception {
  5. public:
  6. not_implemented_exception(std::string_view file, int line, std::string_view message) noexcept :
  7. ::nkg::exception(file, line, message) {}
  8. };
  9. }