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
10
namespace
idol {
11
class
NotImplemented;
12
}
13
14
class
idol::NotImplemented
:
public
Exception
{
15
public
:
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
idol::Exception
Definition
Exception.h:14
idol::NotImplemented
Definition
NotImplemented.h:14
lib
include
idol
general
utils
exceptions
NotImplemented.h
Generated by
1.9.8