memgraph/include/query/exception/cpp_code_generator.hpp

10 lines
174 B
C++

#pragma once
#include "utils/exceptions/basic_exception.hpp"
class CppCodeGeneratorException : public BasicException
{
public:
using BasicException::BasicException;
};