MCPcopy Create free account
hub / github.com/ObEngine/ObEngine / UnknownAnimationCommand

Class UnknownAnimationCommand

include/Core/Animation/Exceptions.hpp:74–85  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

72 };
73
74 class UnknownAnimationCommand : public Exception
75 {
76 public:
77 UnknownAnimationCommand(
78 std::string_view animation, std::string_view command, DebugInfo info)
79 : Exception("UnknownAnimationCommand", info)
80 {
81 this->error("Unknown command '{}' in code of Animation '{}'");
82 this->hint(
83 "Try one of the following valid commands (DELAY, PLAY_GROUP, CALL)");
84 }
85 };
86
87 class UnknownAnimation : public Exception
88 {

Callers 1

executeInstructionMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected