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