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