NavicatCrack/common/exceptions/index_exception.hpp

11 lines
178 B
C++

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