14 lines
261 B
C++
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;
|
||
|
};
|