memgraph/include/query/exception/plan_execution.hpp

10 lines
171 B
C++

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