#include <stdexcept>
#include <string>
#include <moveit_msgs/msg/move_it_error_codes.hpp>
Go to the source code of this file.
◆ CREATE_MOVEIT_ERROR_CODE_EXCEPTION
      
        
          | #define CREATE_MOVEIT_ERROR_CODE_EXCEPTION | 
          ( | 
            | 
          EXCEPTION_CLASS_NAME,  | 
        
        
           | 
           | 
            | 
          ERROR_CODE  | 
        
        
           | 
          ) | 
           |  | 
        
      
 
Value:  class EXCEPTION_CLASS_NAME : public TemplatedMoveItErrorCodeException<ERROR_CODE>                                    \
  {                                                                                                                    \
  public:                                                                                                              \
    EXCEPTION_CLASS_NAME(const std::string& msg) : TemplatedMoveItErrorCodeException(msg)                              \
    {                                                                                                                  \
    }                                                                                                                  \
                                                                                                                       \
    EXCEPTION_CLASS_NAME(const std::string& msg, const moveit_msgs::msg::MoveItErrorCodes::_val_type& error_code)      \
      : TemplatedMoveItErrorCodeException(msg, error_code)                                                             \
    {                                                                                                                  \
    }                                                                                                                  \
  }
 
Definition at line 108 of file trajectory_generation_exceptions.h.