navicat-keygen/common/exceptions/not_implemented_exception.hpp
Double Sine d190d8242d
simplify some exception classes
Signed-off-by: Double Sine <xiao_ai_yu@live.cn>
2022-05-11 11:09:58 +08:00

11 lines
188 B
C++

#pragma once
#include "../exception.hpp"
namespace nkg::exceptions {
class not_implemented_exception : public ::nkg::exception {
using ::nkg::exception::exception;
};
}