-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Improved exceptions in type support loading.
- Loading branch information
1 parent
01bcf56
commit 619f5af
Showing
2 changed files
with
51 additions
and
29 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
// | ||
// Created by stefan on 22.10.24. | ||
// | ||
|
||
#ifndef ROS_BABEL_FISH_IDL_EXCEPTIONS_HPP | ||
#define ROS_BABEL_FISH_IDL_EXCEPTIONS_HPP | ||
|
||
#include "ros_babel_fish/exceptions/babel_fish_exception.hpp" | ||
|
||
namespace ros_babel_fish | ||
{ | ||
|
||
class TypeSupportException : public BabelFishException | ||
{ | ||
public: | ||
using BabelFishException::BabelFishException; | ||
}; | ||
} // namespace ros_babel_fish | ||
|
||
#endif // ROS_BABEL_FISH_IDL_EXCEPTIONS_HPP |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters