Control Libraries
6.3.4
Loading...
Searching...
No Matches
source
robot_model
include
robot_model
exceptions
FrameNotFoundException.hpp
1
#pragma once
2
3
#include <exception>
4
5
namespace
robot_model::exceptions {
6
class
FrameNotFoundException
:
public
std::invalid_argument {
7
public
:
8
explicit
FrameNotFoundException
(
const
std::string& frame) :
9
invalid_argument(
"Frame with name or ID "
+ frame +
" is not in the robot model"
) {};
10
};
11
}
// namespace robot_model::exceptions
robot_model::exceptions::FrameNotFoundException
Definition:
FrameNotFoundException.hpp:6
Generated by
1.9.5