Control Libraries 7.4.0
Loading...
Searching...
No Matches
FrameNotFoundException.hpp
1#pragma once
2
3#include <exception>
4
5namespace robot_model::exceptions {
6class FrameNotFoundException : public std::invalid_argument {
7public:
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