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