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