key_exception.hpp 290 B

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