memgraph/include/utils/exceptions/not_yet_implemented.hpp
2016-12-14 10:27:41 +01:00

12 lines
215 B
C++

#pragma once
#include "utils/exceptions/basic_exception.hpp"
class NotYetImplemented : public BasicException
{
public:
using BasicException::BasicException;
NotYetImplemented() : BasicException("") {}
};