memgraph/include/query_engine/exceptions/exceptions.hpp
2016-09-09 16:14:20 +01:00

19 lines
356 B
C++

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