2a59ed8906
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.
29 lines
550 B
C++
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;
|
|
};
|