not_implemented_exception.hpp 188 B

1234567891011
  1. #pragma once
  2. #include "../exception.hpp"
  3. namespace nkg::exceptions {
  4. class not_implemented_exception : public ::nkg::exception {
  5. using ::nkg::exception::exception;
  6. };
  7. }