memgraph/include/query_engine/exceptions/exceptions.hpp
2016-08-10 09:39:02 +01:00

14 lines
261 B
C++

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