| 632 | } |
| 633 | |
| 634 | MObject* MCore::Exception::Get(const char* msg) |
| 635 | { |
| 636 | static void* GetExceptionPtr = GetStaticMethodPointer(TEXT("GetException")); |
| 637 | return (MObject*)CallStaticMethod<void*, const char*>(GetExceptionPtr, msg); |
| 638 | } |
| 639 | |
| 640 | MObject* MCore::Exception::GetArgument(const char* arg, const char* msg) |
| 641 | { |
no test coverage detected