Control Libraries 7.4.0
Loading...
Searching...
No Matches
IONotFoundException.hpp
1#pragma once
2
3#include <exception>
4#include <iostream>
5
6namespace state_representation::exceptions {
7
12class IONotFoundException : public std::logic_error {
13public:
14 explicit IONotFoundException(const std::string& msg) : logic_error(msg) {};
15};
16}// namespace state_representation::exceptions
Exception that is thrown when a IO name or index is out of range.