| 48 | { |
| 49 | public: |
| 50 | LogicError(std::string_view message) : BehaviorTreeException(message) |
| 51 | {} |
| 52 | |
| 53 | template <typename... SV> |
| 54 | LogicError(const SV&... args) : BehaviorTreeException(args...) |
nothing calls this directly
no outgoing calls
no test coverage detected