idol
A C++ Framework for Optimization
Loading...
Searching...
No Matches
NotImplemented.h
1//
2// Created by henri on 23/09/22.
3//
4
5#ifndef OPTIMIZE_NOTIMPLEMENTED_H
6#define OPTIMIZE_NOTIMPLEMENTED_H
7
8#include "Exception.h"
9
10namespace idol {
11 class NotImplemented;
12}
13
15public:
16 NotImplemented(std::string t_functionality,
17 const std::string& t_method_to_override) : Exception(
18 std::move(t_functionality) + " is not implemented. "
19 "If you wish to implement it, please override the "
20 + t_method_to_override + " method.") {
21
22 }
23};
24
25#endif //OPTIMIZE_NOTIMPLEMENTED_H