Control Libraries
6.3.4
Loading...
Searching...
No Matches
source
controllers
include
controllers
exceptions
NotImplementedException.hpp
1
#pragma once
2
3
#include <stdexcept>
4
#include <string>
5
6
namespace
controllers::exceptions {
7
class
NotImplementedException
:
public
std::logic_error {
8
public
:
9
explicit
NotImplementedException
(
const
std::string& msg) : std::logic_error(msg) {};
10
};
11
}
controllers::exceptions::NotImplementedException
Definition:
NotImplementedException.hpp:7
Generated by
1.9.5