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