memgraph/include/query_engine/exceptions/exceptions.hpp

14 lines
261 B
C++
Raw Normal View History

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