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