memgraph/include/query_engine/exceptions/exceptions.hpp
Kruno Tomola Fabro 2a59ed8906 Minor refactorings:
Importes now use logger.

Refactored order of constrution of objects in Db.

Moved index creation/removing from Db to Indexes.

Completed Garbage class.
Cleaner now calls garbage.clean() for databases.

Renamed List to ConcurrentList which better names it.
2016-09-12 20:13:04 +01:00

29 lines
550 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;
};
class NotYetImplemented : public BasicException
{
using BasicException::BasicException;
};
class NonExhaustiveSwitch : public BasicException
{
using BasicException::BasicException;
};