This errors are usually related to problems that are relted to data or conditions that happen only at run-time
| 58 | // This errors are usually related to problems that are relted to data or conditions |
| 59 | // that happen only at run-time |
| 60 | class RuntimeError : public BehaviorTreeException |
| 61 | { |
| 62 | public: |
| 63 | RuntimeError(std::string_view message) : BehaviorTreeException(message) |
| 64 | {} |
| 65 | |
| 66 | template <typename... SV> |
| 67 | RuntimeError(const SV&... args) : BehaviorTreeException(args...) |
| 68 | {} |
| 69 | }; |
| 70 | |
| 71 | /// Information about a node in the tick backtrace. |
| 72 | struct TickBacktraceEntry |
no outgoing calls