Rebel Fork Framework
|
#include <Urho3D/Core/Exception.h>
Public Member Functions | |
RuntimeException (ea::string_view message) | |
Construct exception with static message. | |
template<class T , class ... Ts> | |
RuntimeException (ea::string_view format, const T &firstArg, const Ts &... otherArgs) | |
Construct exception with formatted message. | |
const ea::string & | GetMessage () const |
Return message. | |
const char * | what () const noexcept override |
Private Attributes | |
ea::string | message_ |
Generic runtime exception adapted for usage in Urho. Note that this exception shouldn't leak into main loop of the engine and should only be used internally.