NavicatCrack/common/exceptions/key_exception.hpp

11 lines
176 B
C++

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