navicat-keygen-2023/common/exceptions/key_exception.hpp
Double Sine b3046b43f0
simplify some exception classes
Signed-off-by: Double Sine <xiao_ai_yu@live.cn>
2022-05-07 23:08:50 +08:00

11 lines
176 B
C++

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