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