This errors are usually related to problems which "probably" require code refactoring to be fixed.
| 45 | // This errors are usually related to problems which "probably" require code refactoring |
| 46 | // to be fixed. |
| 47 | class LogicError : public BehaviorTreeException |
| 48 | { |
| 49 | public: |
| 50 | LogicError(std::string_view message) : BehaviorTreeException(message) |
| 51 | {} |
| 52 | |
| 53 | template <typename... SV> |
| 54 | LogicError(const SV&... args) : BehaviorTreeException(args...) |
| 55 | {} |
| 56 | }; |
| 57 | |
| 58 | // This errors are usually related to problems that are relted to data or conditions |
| 59 | // that happen only at run-time |
no outgoing calls
no test coverage detected