10 lines
171 B
C++
10 lines
171 B
C++
|
#pragma once
|
||
|
|
||
|
#include "utils/exceptions/basic_exception.hpp"
|
||
|
|
||
|
class PlanExecutionException : public BasicException
|
||
|
{
|
||
|
public:
|
||
|
using BasicException::BasicException;
|
||
|
};
|